diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-24 14:53:18 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-24 14:53:18 +0000 |
commit | cf30cc82a343802b601f01ae153916887f11eb7b (patch) | |
tree | dd5af380364efe67c7bd302d6c1c6d70f303f959 /archival/tar.c | |
parent | 376ce1e775a97a01f1c454497fbe34d326043328 (diff) | |
download | busybox-w32-cf30cc82a343802b601f01ae153916887f11eb7b.tar.gz busybox-w32-cf30cc82a343802b601f01ae153916887f11eb7b.tar.bz2 busybox-w32-cf30cc82a343802b601f01ae153916887f11eb7b.zip |
header_verbose_list: stop truncating file size in listing
Diffstat (limited to 'archival/tar.c')
-rw-r--r-- | archival/tar.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archival/tar.c b/archival/tar.c index 911c2d35e..6aaa42273 100644 --- a/archival/tar.c +++ b/archival/tar.c | |||
@@ -563,9 +563,9 @@ static char get_header_tar_Z(archive_handle_t *archive_handle) | |||
563 | archive_handle->seek = seek_by_read; | 563 | archive_handle->seek = seek_by_read; |
564 | 564 | ||
565 | /* do the decompression, and cleanup */ | 565 | /* do the decompression, and cleanup */ |
566 | if (xread_char(archive_handle->src_fd) != 0x1f || | 566 | if (xread_char(archive_handle->src_fd) != 0x1f |
567 | xread_char(archive_handle->src_fd) != 0x9d) | 567 | || xread_char(archive_handle->src_fd) != 0x9d |
568 | { | 568 | ) { |
569 | bb_error_msg_and_die("invalid magic"); | 569 | bb_error_msg_and_die("invalid magic"); |
570 | } | 570 | } |
571 | 571 | ||