diff options
author | Denis Vlasenko | 2007-09-05 11:48:32 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-09-05 11:48:32 +0000 |
commit | 211f7f88ae67e875bed50409b2edbb6d740fc648 (patch) | |
tree | ae37652f75374919fff81e732fd2ab867e6a947a /archival/tar.c | |
parent | beffd43d8e393b68787a00d9c6078a2b367afd01 (diff) | |
download | busybox-211f7f88ae67e875bed50409b2edbb6d740fc648.zip busybox-211f7f88ae67e875bed50409b2edbb6d740fc648.tar.gz |
tar + gzip/bzip2/etc: support NOMMU machines (by Alex Landau <landau_alex@yahoo.com>)
Diffstat (limited to 'archival/tar.c')
-rw-r--r-- | archival/tar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/tar.c b/archival/tar.c index f0d3971..e0d4daf 100644 --- a/archival/tar.c +++ b/archival/tar.c @@ -660,7 +660,7 @@ static char get_header_tar_Z(archive_handle_t *archive_handle) bb_error_msg_and_die("invalid magic"); } - archive_handle->src_fd = open_transformer(archive_handle->src_fd, uncompress); + archive_handle->src_fd = open_transformer(archive_handle->src_fd, uncompress, "uncompress", "uncompress", "-cf", "-", NULL); archive_handle->offset = 0; while (get_header_tar(archive_handle) == EXIT_SUCCESS) /* nothing */; |