From 8c88e5712612601cec92d4ca81f86a6e9db1781e Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Thu, 22 May 2014 11:53:35 -0500 Subject: [PATCH] win32_apply.c: Fix error message --- src/win32_apply.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/win32_apply.c b/src/win32_apply.c index 2926883c..ee45acb4 100644 --- a/src/win32_apply.c +++ b/src/win32_apply.c @@ -1761,7 +1761,10 @@ end_extract_stream(struct wim_lookup_table_entry *stream, int status, void *_ctx dentry = list_first_entry(&ctx->reparse_dentries, struct wim_dentry, tmp_list); build_extraction_path(dentry, ctx); - ERROR("Invalid reparse point", current_path(ctx)); + ERROR("Reparse data of \"%ls\" has size " + "%"PRIu64" bytes (exceeds %u bytes)", + current_path(ctx), stream->size, + REPARSE_DATA_MAX_SIZE); return WIMLIB_ERR_INVALID_REPARSE_DATA; } /* In the WIM format, reparse streams are just the reparse data -- 2.43.0