From b7cc230c1101c47335d45fbd71cd97ea96bd5ee3 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sat, 24 Nov 2012 13:32:45 -0600 Subject: [PATCH] wimapply.c: Fix extract flags --- programs/wimapply.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/programs/wimapply.c b/programs/wimapply.c index 1271d332..8de4a54d 100644 --- a/programs/wimapply.c +++ b/programs/wimapply.c @@ -17,7 +17,7 @@ * ../src/*.c -I/usr/include/libxml2 -I.. -D_FILE_OFFSET_BITS=64 \ * -D_GNU_SOURCE -std=gnu99 -lxml2 -lcrypto -lpthread -lntfs-3g * $ stat -c %s wimapply - * 48592 + * 48880 * * Compare this to: * $ stat -c %s /usr/lib/libwim.so.1.0.0 @@ -75,8 +75,7 @@ int main(int argc, char **argv) return ret; } - ret = wimlib_extract_image(w, image, target, - WIMLIB_EXTRACT_FLAG_SEQUENTIAL, + ret = wimlib_extract_image(w, image, target, extract_flags, NULL, 0, NULL); if (ret != 0) { fputs("Failed to apply WIM image\n", stderr); -- 2.43.0