From 0cbc8cf4c9b60f69826b9a9cf5bd5eb2e38eacb1 Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Wed, 28 Mar 2001 05:47:26 +0000 Subject: Gunzip changes broke tar -z support (woops) --- tar.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tar.c') diff --git a/tar.c b/tar.c index 38a8d9a04..16b3fb4b6 100644 --- a/tar.c +++ b/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); } -- cgit v1.2.3