From 26b6363193661012b0296781916d8adaf2389c93 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sun, 28 Apr 2013 17:11:13 -0500 Subject: [PATCH] win32_capture_try_rpfix(): Warn on excluded reparse points --- src/wim.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wim.c b/src/wim.c index a2575811..592cc440 100644 --- a/src/wim.c +++ b/src/wim.c @@ -294,6 +294,8 @@ wimlib_print_wim_information(const WIMStruct *w) wim_info_get_total_bytes(w->wim_info)); tprintf(T("Integrity Info: %"TS"\n"), (w->hdr.integrity.offset != 0) ? T("yes") : T("no")); + tprintf(T("Relative path junction: %"TS"\n"), + (hdr->flags & WIM_HDR_FLAG_RP_FIX) ? T("yes") : T("no")); tputchar(T('\n')); } -- 2.43.0