Updates from both Vladimir and Larry
[oweals/busybox.git] / gzip.c
diff --git a/gzip.c b/gzip.c
index f05ef95d02d089df9f07aabcebc1ff2b02ca14eb..c4c59272903bc3eb27ac1d6dff47f844a228103e 100644 (file)
--- a/gzip.c
+++ b/gzip.c
@@ -44,9 +44,6 @@
 #include <unistd.h>
 #include <errno.h>
 #include "busybox.h"
-#define BB_DECLARE_EXTERN
-#define bb_need_memory_exhausted
-#include "messages.c"
 
 #define memzero(s, n)     memset ((void *)(s), 0, (n))
 
@@ -1902,7 +1899,7 @@ int gzip_main(int argc, char **argv)
        int force = 0;
        int opt;
 
-       while ((opt = getopt(argc, argv, "cf123456789d")) != -1) {
+       while ((opt = getopt(argc, argv, "cf123456789dq")) != -1) {
                switch (opt) {
                case 'c':
                        tostdout = 1;
@@ -1914,6 +1911,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 'q':
+                       break;
 #ifdef BB_GUNZIP
                case 'd':
                        optind = 1;