]> wimlib.net Git - wimlib/blobdiff - src/win32_capture.c
win32_do_capture_warnings: Shorten message
[wimlib] / src / win32_capture.c
index 702d93cd445512de571fdb730c6cf00f6c7e55c0..e2d98078702f840b68ff8a14848999ad8309f43e 100644 (file)
@@ -1138,8 +1138,7 @@ win32_do_capture_warnings(const struct win32_capture_state *state,
 "          nothing more needs to be done%ls\n",
        (add_flags & WIMLIB_ADD_FLAG_NO_ACLS) ? L"." :
          L", although you might consider\n"
-"          passing the --no-acls flag to `wimlib-imagex capture' or\n"
-"          `wimlib-imagex append' to explicitly capture no security\n"
+"          using the --no-acls option to explicitly capture no security\n"
 "          descriptors.\n");
 }
 
@@ -1155,6 +1154,10 @@ win32_build_dentry_tree(struct wim_dentry **root_ret,
        struct win32_capture_state state;
        unsigned vol_flags;
 
+       if (!win32func_FindFirstStreamW) {
+               WARNING("Running on Windows XP or earlier; "
+                       "alternate data streams will not be captured.");
+       }
 
        path_nchars = wcslen(root_disk_path);
        if (path_nchars > 32767)