]> wimlib.net Git - wimlib/blobdiff - src/reparse.c
Character encoding and string conversion updates
[wimlib] / src / reparse.c
index f96fd49b7af592b63b3d6dd8f0b020a722489a3d..da8642f8561fd74696726a11e583eedeb3c9f219 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 a multibyte string.  */
        if (utf16le_to_tstr(link.substitute_name, link.substitute_name_nbytes,
                            &target_buffer, &target_len))
                return -errno;