]> wimlib.net Git - wimlib/blobdiff - include/wimlib/dentry.h
verify_dentry(): Allow multiple DOS names per inode (for UDF)
[wimlib] / include / wimlib / dentry.h
index e515abec732b26c722d83c0b10ecad362a71c331..3b0de793c96a82e8368b3e09f906e8aa1d0fb9de 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;