aboutsummaryrefslogtreecommitdiff
path: root/gzip.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 /gzip.c
parentcc0aa0f2d74901f3cdc87073f52020b98605cb79 (diff)
downloadbusybox-w32-5bcfc9ba1aaaec3a413d39d60e6a904daafa2cc1.tar.gz
busybox-w32-5bcfc9ba1aaaec3a413d39d60e6a904daafa2cc1.tar.bz2
busybox-w32-5bcfc9ba1aaaec3a413d39d60e6a904daafa2cc1.zip
Tolerate -q argument, if -q is passed give a warning and continue rather than just fail
Diffstat (limited to 'gzip.c')
-rw-r--r--gzip.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gzip.c b/gzip.c
index 6d46926ee..c4c592729 100644
--- a/gzip.c
+++ b/gzip.c
@@ -1899,7 +1899,7 @@ int gzip_main(int argc, char **argv)
1899 int force = 0; 1899 int force = 0;
1900 int opt; 1900 int opt;
1901 1901
1902 while ((opt = getopt(argc, argv, "cf123456789d")) != -1) { 1902 while ((opt = getopt(argc, argv, "cf123456789dq")) != -1) {
1903 switch (opt) { 1903 switch (opt) {
1904 case 'c': 1904 case 'c':
1905 tostdout = 1; 1905 tostdout = 1;
@@ -1911,6 +1911,8 @@ int gzip_main(int argc, char **argv)
1911 case '1': case '2': case '3': case '4': case '5': 1911 case '1': case '2': case '3': case '4': case '5':
1912 case '6': case '7': case '8': case '9': 1912 case '6': case '7': case '8': case '9':
1913 break; 1913 break;
1914 case 'q':
1915 break;
1914#ifdef BB_GUNZIP 1916#ifdef BB_GUNZIP
1915 case 'd': 1917 case 'd':
1916 optind = 1; 1918 optind = 1;