aboutsummaryrefslogtreecommitdiff
path: root/gzip.c
diff options
context:
space:
mode:
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;