]> wimlib.net Git - wimlib/blobdiff - src/extract.c
dentry_first_lte() -> dentry_unnamed_lte()
[wimlib] / src / extract.c
index 803e854544cff3b8c06a9a94180d81c1725f1eb2..b27c44325fabd8d7078b79d4ababa447b73b8e54 100644 (file)
@@ -2,6 +2,11 @@
  * extract.c
  *
  * Support for extracting WIM files.
+ *
+ * This code does NOT contain any filesystem-specific features.  In particular,
+ * security information (i.e. file permissions) and alternate data streams are
+ * ignored, except possibly to read an alternate data stream that contains
+ * symbolic link data.
  */
 
 /*
@@ -195,7 +200,7 @@ static int extract_regular_file(WIMStruct *w,
 {
        struct lookup_table_entry *lte;
 
-       lte = dentry_first_lte(dentry, w->lookup_table);
+       lte = dentry_unnamed_lte(dentry, w->lookup_table);
 
        if ((extract_flags & (WIMLIB_EXTRACT_FLAG_SYMLINK |
                              WIMLIB_EXTRACT_FLAG_HARDLINK)) && lte) {
@@ -313,6 +318,7 @@ static int extract_dentry(struct dentry *dentry, void *arg)
        return 0;
 }
 
+/* Apply timestamp to extracted file */
 static int apply_dentry_timestamps(struct dentry *dentry, void *arg)
 {
        struct extract_args *args = arg;