X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Fwin32_capture.c;h=8cf32efdef5b6fd167eed759c5455f906299132b;hp=71a593695d9630f038590c4793a8aba433092cac;hb=16a0ef18b1404aab857696ae479e246dfbcfbaa3;hpb=f7c0992ff2b5c7f9c178262d5ede6910b039eba8 diff --git a/src/win32_capture.c b/src/win32_capture.c index 71a59369..8cf32efd 100644 --- a/src/win32_capture.c +++ b/src/win32_capture.c @@ -1123,7 +1123,10 @@ winnt_build_dentry_tree_recursive(struct wim_dentry **root_ret, ERROR_WITH_ERRNO("\"%ls\": Can't open file " "(status=0x%08"PRIx32")", printable_path(full_path), (u32)status); - ret = WIMLIB_ERR_OPEN; + if (status == STATUS_FVE_LOCKED_VOLUME) + ret = WIMLIB_ERR_FVE_LOCKED_VOLUME; + else + ret = WIMLIB_ERR_OPEN; } /* XXX: Provide option to exclude files that fail with * STATUS_SHARING_VIOLATION? */