Update applet define from BB_CP_MV to BB_CP and BB_MV.
[oweals/busybox.git] / gunzip.c
index e6f6bdfc1a40093af0e16e64c3f00648d24b0005..b4edb25ac19fb502fcf727919bf7673406c11b54 100644 (file)
--- a/gunzip.c
+++ b/gunzip.c
@@ -91,7 +91,7 @@ extern int gunzip_main(int argc, char **argv)
        if (strcmp(applet_name, "zcat") == 0)
                flags |= gunzip_to_stdout;
 
-       while ((opt = getopt(argc, argv, "ctfh")) != -1) {
+       while ((opt = getopt(argc, argv, "ctfhd")) != -1) {
                switch (opt) {
                case 'c':
                        flags |= gunzip_to_stdout;
@@ -102,6 +102,8 @@ extern int gunzip_main(int argc, char **argv)
                case 't':
                        flags |= gunzip_test;
                        break;
+               case 'd': /* Used to convert gzip to gunzip. */
+                       break;
                case 'h':
                default:
                        show_usage(); /* exit's inside usage */