]> wimlib.net Git - wimlib/commitdiff
Fix print part number of total parts in WIM header
authorEric Biggers <ebiggers3@gmail.com>
Fri, 31 Aug 2012 04:03:39 +0000 (23:03 -0500)
committerEric Biggers <ebiggers3@gmail.com>
Fri, 31 Aug 2012 04:03:39 +0000 (23:03 -0500)
src/header.c
tests/test-imagex-ntfs

index 1b57dc2dbe4920a455ef202ce67def2f922eb6c1..e7dd900904a93b0a883725799a85df1bd922b5d5 100644 (file)
@@ -253,8 +253,8 @@ WIMLIBAPI void wimlib_print_header(const WIMStruct *w)
        fputs ("GUID                        = ", stdout);
        print_byte_field(hdr->guid, WIM_GID_LEN);
        putchar('\n');
-       printf("Part Number                 = %hu\n", 1);
-       printf("Total Parts                 = %hu\n", 1);
+       printf("Part Number                 = %hu\n", w->hdr.part_number);
+       printf("Total Parts                 = %hu\n", w->hdr.total_parts);
        printf("Image Count                 = %u\n", hdr->image_count);
        printf("Lookup Table Size           = %"PRIu64"\n", 
                                (u64)hdr->lookup_table_res_entry.size);
index 989be190bea3100a7709340418333a8c9716b7a6..6d7fbd5b2d2db6bd5004389b9e052a1a32ac1550 100755 (executable)
@@ -10,8 +10,7 @@ set -e
 cd tests
 
 imagex() {
-       #echo "imagex $@"
-       ../imagex $@
+       ../imagex $@ > /dev/null
 }
 
 __do_unmount() {
@@ -237,7 +236,7 @@ do_test 'echo -n 8 > file;
         ln file hardlink;
         ln -s hardlink symlink;
         echo -n 8 > identical file;
-        dd if=/dev/urandom of=randomfile bs=4096 count=10;
+        dd if=/dev/urandom of=randomfile bs=4096 count=10 &>/dev/null;
         mkdir dir;
         setfattr -n system.ntfs_dos_name -v DOSNAME dir;
         setfattr -n system.ntfs_acl -v 0s`cat ../security_descriptor_1.base64` dir