]> wimlib.net Git - wimlib/blobdiff - include/wimlib/dentry.h
hardlink.c: Fix some error paths
[wimlib] / include / wimlib / dentry.h
index e515abec732b26c722d83c0b10ecad362a71c331..282cad4555728da2198de2026ddeb9c8766f07ca 100644 (file)
@@ -157,10 +157,13 @@ struct wim_dentry {
        /* Does this dentry need to be extracted? */
        u8 needs_extraction : 1;
 
+       u8 not_extracted : 1;
+
        /* Only used during NTFS capture */
        u8 is_win32_name : 1;
 
-       u8 not_extracted : 1;
+       /* Set to 1 if an inode has multiple DOS names. */
+       u8 dos_name_invalid : 1;
 
        /* Temporary list */
        struct list_head tmp_list;
@@ -304,8 +307,8 @@ struct wim_inode {
        /* Device number, used only during image capture */
        u64 i_devno;
 
-       /* List of dentries that reference this inode (there should be
-        * link_count of them) */
+       /* List of dentries that reference this inode (there should be i_nlink
+        * of them) */
        struct list_head i_dentry;
 
        union {