aboutsummaryrefslogtreecommitdiff
path: root/gzip.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-12-13 17:55:11 +0000
committerEric Andersen <andersen@codepoet.org>2000-12-13 17:55:11 +0000
commit02ced93ec26f8e27f3721e2ec3cafef52f2eb1ec (patch)
tree307f9bae252acabfffa7ec8e02a6bbef293ab400 /gzip.c
parent46948366fa20d2fe979a7af887863a0800e24579 (diff)
downloadbusybox-02ced93ec26f8e27f3721e2ec3cafef52f2eb1ec.tar.gz
Add GNU compatibile gzip -d
Diffstat (limited to 'gzip.c')
-rw-r--r--gzip.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gzip.c b/gzip.c
index 49c429b3a..ca0c177d4 100644
--- a/gzip.c
+++ b/gzip.c
@@ -1808,6 +1808,8 @@ int gzip_main(int argc, char **argv)
case '1': case '2': case '3': case '4': case '5':
case '6': case '7': case '8': case '9':
break;
+ case 'd':
+ exit(gunzip_main(argc, argv));
default:
usage(gzip_usage);
}