]> wimlib.net Git - wimlib/blobdiff - src/win32_capture.c
Exclude unsupported files from capture
[wimlib] / src / win32_capture.c
index 9b16796a5e4bb6f0ac6e0e9fde4f86bbf339f580..cf116399f0447bdb661745a2479a84ae5d02f668 100644 (file)
@@ -944,7 +944,7 @@ win32_build_dentry_tree_recursive(struct wim_dentry **root_ret,
                {
                        union wimlib_progress_info info;
                        info.scan.cur_path = path;
-                       info.scan.excluded = true;
+                       info.scan.status = WIMLIB_SCAN_DENTRY_EXCLUDED;
                        params->progress_func(WIMLIB_PROGRESS_MSG_SCAN_DENTRY, &info);
                }
                ret = 0;
@@ -968,7 +968,7 @@ win32_build_dentry_tree_recursive(struct wim_dentry **root_ret,
        {
                union wimlib_progress_info info;
                info.scan.cur_path = path;
-               info.scan.excluded = false;
+               info.scan.status = WIMLIB_SCAN_DENTRY_OK;
                params->progress_func(WIMLIB_PROGRESS_MSG_SCAN_DENTRY, &info);
        }