diff options
author | Denis Vlasenko | 2006-11-24 14:53:18 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-24 14:53:18 +0000 |
commit | cf30cc82a343802b601f01ae153916887f11eb7b (patch) | |
tree | dd5af380364efe67c7bd302d6c1c6d70f303f959 /archival/tar.c | |
parent | 376ce1e775a97a01f1c454497fbe34d326043328 (diff) | |
download | busybox-cf30cc82a343802b601f01ae153916887f11eb7b.zip busybox-cf30cc82a343802b601f01ae153916887f11eb7b.tar.gz |
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 911c2d3..6aaa422 100644 --- a/archival/tar.c +++ b/archival/tar.c @@ -563,9 +563,9 @@ static char get_header_tar_Z(archive_handle_t *archive_handle) archive_handle->seek = seek_by_read; /* do the decompression, and cleanup */ - if (xread_char(archive_handle->src_fd) != 0x1f || - xread_char(archive_handle->src_fd) != 0x9d) - { + if (xread_char(archive_handle->src_fd) != 0x1f + || xread_char(archive_handle->src_fd) != 0x9d + ) { bb_error_msg_and_die("invalid magic"); } |