diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2001-03-28 05:47:26 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2001-03-28 05:47:26 +0000 |
commit | 0cbc8cf4c9b60f69826b9a9cf5bd5eb2e38eacb1 (patch) | |
tree | dabf311eea92bf87c8e3b41478ed297204cd5075 /archival | |
parent | 58e42d5356bfbb8ed817a782901bf52d9b8f54bf (diff) |
Gunzip changes broke tar -z support (woops)
Diffstat (limited to 'archival')
-rw-r--r-- | archival/tar.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/archival/tar.c b/archival/tar.c index 38a8d9a04..16b3fb4b6 100644 --- a/archival/tar.c +++ b/archival/tar.c @@ -58,7 +58,6 @@ #ifdef BB_FEATURE_TAR_GZIP extern int unzip(int in, int out); -extern int gunzip_init(); #endif /* Tar file constants */ @@ -173,7 +172,7 @@ extern int tar_unzip_init(int tarFd) if (child_pid==0) { /* child process */ close(unzip_pipe[0]); - gunzip_init(); +// gunzip_init(); unzip(tarFd, unzip_pipe[1]); exit(EXIT_SUCCESS); } |