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-b833ca9d2d705943bb980c7a705aa3f07c7b5618.tar.gz |
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) #if ENABLE_FEATURE_TAR_GNU_EXTENSIONS int parse_names; #else - enum { parse_names = 0 }; + enum { parse_names = 1 }; #endif if (sizeof(tar) != 512) |