aboutsummaryrefslogtreecommitdiff
path: root/gunzip.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2001-05-07 12:01:58 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2001-05-07 12:01:58 +0000
commit5bcfc9ba1aaaec3a413d39d60e6a904daafa2cc1 (patch)
treecd1ba2dfa79ec9864542bb52808f3d27b280ebc4 /gunzip.c
parentcc0aa0f2d74901f3cdc87073f52020b98605cb79 (diff)
downloadbusybox-5bcfc9ba1aaaec3a413d39d60e6a904daafa2cc1.tar.gz
Tolerate -q argument, if -q is passed give a warning and continue rather than just fail
Diffstat (limited to 'gunzip.c')
-rw-r--r--gunzip.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gunzip.c b/gunzip.c
index db5f6ee55..ed4a3de36 100644
--- a/gunzip.c
+++ b/gunzip.c
@@ -87,7 +87,7 @@ extern int gunzip_main(int argc, char **argv)
if (strcmp(applet_name, "zcat") == 0)
flags |= gunzip_to_stdout;
- while ((opt = getopt(argc, argv, "ctfhd")) != -1) {
+ while ((opt = getopt(argc, argv, "ctfhdq")) != -1) {
switch (opt) {
case 'c':
flags |= gunzip_to_stdout;
@@ -100,6 +100,8 @@ extern int gunzip_main(int argc, char **argv)
break;
case 'd': /* Used to convert gzip to gunzip. */
break;
+ case 'q':
+ error_msg("-q option not supported, ignored");
case 'h':
default:
show_usage(); /* exit's inside usage */