]> wimlib.net Git - wimlib/blobdiff - src/reparse.c
Rewrite string encoding conversion code
[wimlib] / src / reparse.c
index f96fd49b7af592b63b3d6dd8f0b020a722489a3d..94ff1292852e318f10f8fa21759c8c49a6b87d36 100644 (file)
@@ -252,7 +252,7 @@ wim_inode_readlink(const struct wim_inode *inode, char *buf, size_t bufsize,
        if (parse_link_reparse_point(&rpbuf, rpbuflen, &link))
                return -EINVAL;
 
-       /* Translate the substitute name to the current multibyte encoding.  */
+       /* Translate the substitute name to UTF-8.  */
        if (utf16le_to_tstr(link.substitute_name, link.substitute_name_nbytes,
                            &target_buffer, &target_len))
                return -errno;