diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-24 18:53:13 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-24 18:53:13 +0000 |
commit | b833ca9d2d705943bb980c7a705aa3f07c7b5618 (patch) | |
tree | 567ede60b817554c365f1755c823deaa979a8afc /archival | |
parent | d6772501db451b5d7fd4001f5e9c4f1ad20c63d6 (diff) | |
download | busybox-w32-b833ca9d2d705943bb980c7a705aa3f07c7b5618.tar.gz busybox-w32-b833ca9d2d705943bb980c7a705aa3f07c7b5618.tar.bz2 busybox-w32-b833ca9d2d705943bb980c7a705aa3f07c7b5618.zip |
tar: buglet fix
Diffstat (limited to 'archival')
-rw-r--r-- | archival/libunarchive/get_header_tar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libunarchive/get_header_tar.c b/archival/libunarchive/get_header_tar.c index 0fb14e8e4..a49081f40 100644 --- a/archival/libunarchive/get_header_tar.c +++ b/archival/libunarchive/get_header_tar.c | |||
@@ -72,7 +72,7 @@ char get_header_tar(archive_handle_t *archive_handle) | |||
72 | #if ENABLE_FEATURE_TAR_GNU_EXTENSIONS | 72 | #if ENABLE_FEATURE_TAR_GNU_EXTENSIONS |
73 | int parse_names; | 73 | int parse_names; |
74 | #else | 74 | #else |
75 | enum { parse_names = 0 }; | 75 | enum { parse_names = 1 }; |
76 | #endif | 76 | #endif |
77 | 77 | ||
78 | if (sizeof(tar) != 512) | 78 | if (sizeof(tar) != 512) |