diff options
Diffstat (limited to 'tar.c')
-rw-r--r-- | tar.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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); } |