aboutsummaryrefslogtreecommitdiff
path: root/gunzip.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2001-03-29 01:07:54 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2001-03-29 01:07:54 +0000
commit5f2ef46d6dd0cc8f564b11da70ac8c34968302d1 (patch)
tree9a6f77212781322d0a5280339dd6f4a8dd943083 /gunzip.c
parented7a77653847c72bfe22879cea5f976fa9defb24 (diff)
downloadbusybox-5f2ef46d6dd0cc8f564b11da70ac8c34968302d1.tar.gz
Fix zcat
Diffstat (limited to 'gunzip.c')
-rw-r--r--gunzip.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/gunzip.c b/gunzip.c
index d457b750c..1107bc75c 100644
--- a/gunzip.c
+++ b/gunzip.c
@@ -1074,16 +1074,14 @@ extern int gunzip_main(int argc, char **argv)
int opt = 0;
int delete_old_file = FALSE;
-#ifdef BB_ZCAT
/* if called as zcat */
if (strcmp(applet_name, "zcat") == 0) {
if (argc != 2) {
show_usage();
}
+ optind = 1;
flags |= (gunzip_force | gunzip_to_stdout);
- } else
-#endif
- if (strcmp(applet_name, "gunzip") == 0) {
+ } else {
/* workout flags as regular gunzip */
/* set default flags */
if (argc == 1) {