diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-24 18:53:13 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-24 18:53:13 +0000 |
commit | 89026b9951b21f7b660f8d0c5e5a7aee9344fd45 (patch) | |
tree | 567ede60b817554c365f1755c823deaa979a8afc | |
parent | 1274ac7df5b7d48b31c0380b31bfa79cf2e3c992 (diff) | |
download | busybox-w32-89026b9951b21f7b660f8d0c5e5a7aee9344fd45.tar.gz busybox-w32-89026b9951b21f7b660f8d0c5e5a7aee9344fd45.tar.bz2 busybox-w32-89026b9951b21f7b660f8d0c5e5a7aee9344fd45.zip |
tar: buglet fix
git-svn-id: svn://busybox.net/trunk/busybox@16660 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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) |