From b428ac981d617646ba803857d11d04d34d02ddc7 Mon Sep 17 00:00:00 2001 From: bug1 Date: Wed, 28 Mar 2001 05:47:26 +0000 Subject: Gunzip changes broke tar -z support (woops) git-svn-id: svn://busybox.net/trunk/busybox@2209 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- 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-55-g6feb