diff options
author | Rob Landley <rob@landley.net> | 2018-08-07 08:04:15 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2018-08-07 08:04:15 -0500 |
commit | e2ebdd95f0b145336a8a28994897d3596a6de910 (patch) | |
tree | 7e1de2e1cf5e2d1bf057406fa7342fe4f09ce141 /toys/pending | |
parent | f14a54137494f45f4870bb15599e3017534752d3 (diff) | |
download | toybox-e2ebdd95f0b145336a8a28994897d3596a6de910.tar.gz |
Forgot to check in the deflate header change, and pending shouldn't default y.
Diffstat (limited to 'toys/pending')
-rw-r--r-- | toys/pending/gzip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toys/pending/gzip.c b/toys/pending/gzip.c index 694ef2e8..bc059dd6 100644 --- a/toys/pending/gzip.c +++ b/toys/pending/gzip.c @@ -13,7 +13,7 @@ USE_ZCAT(NEWTOY(zcat, "cdfk123456789[-123456789]", TOYFLAG_USR|TOYFLAG_BIN)) config GZIP bool "gzip" - default y + default n help usage: gzip [-19cdfk] [FILE...] @@ -29,7 +29,7 @@ config GZIP config GUNZIP bool "gunzip" - default y + default n help usage: gunzip [-cfk] [FILE...] @@ -43,7 +43,7 @@ config GUNZIP config ZCAT bool "zcat" - default y + default n help usage: zcat [FILE...] |