commit | 3a6da8c183142a2681a2382b63e970f457cf807b | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Thu Mar 29 14:22:45 2001 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Thu Mar 29 14:22:45 2001 +0000 |
tree | bd8b97a2ec797c1523c3444dcb7a83a2b24cf716 | |
parent | 5f2ef46d6dd0cc8f564b11da70ac8c34968302d1 [diff] [blame] |
gz_open and gz_close were left in, even when BB_FEATURE_TAR_GZIP was disabled. Fix that.
diff --git a/gunzip.c b/gunzip.c index 1107bc7..51541f1 100644 --- a/gunzip.c +++ b/gunzip.c
@@ -1017,6 +1017,7 @@ return 0; } +#ifdef BB_FEATURE_TAR_GZIP extern int gz_open(FILE *compressed_file, int *pid) { int unzip_pipe[2]; @@ -1056,6 +1057,7 @@ free(window); free(crc_table); } +#endif extern int gunzip_main(int argc, char **argv) {