From ed7a77653847c72bfe22879cea5f976fa9defb24 Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Thu, 29 Mar 2001 00:57:20 +0000 Subject: gunzip -c works again --- gunzip.c | 42 +++++++++++++++++++----------------------- 1 file changed, 19 insertions(+), 23 deletions(-) (limited to 'gunzip.c') diff --git a/gunzip.c b/gunzip.c index 93f7c351e..d457b750c 100644 --- a/gunzip.c +++ b/gunzip.c @@ -1080,32 +1080,31 @@ extern int gunzip_main(int argc, char **argv) if (argc != 2) { show_usage(); } - flags |= gunzip_force; - flags |= gunzip_to_stdout; + flags |= (gunzip_force | gunzip_to_stdout); } else #endif - { + if (strcmp(applet_name, "gunzip") == 0) { /* workout flags as regular gunzip */ /* set default flags */ if (argc == 1) { flags |= (gunzip_from_stdin | gunzip_to_stdout); - } - - /* Parse any options */ - while ((opt = getopt(argc, argv, "ctfh")) != -1) { - switch (opt) { - case 'c': - flags |= gunzip_to_stdout; - break; - case 'f': - flags |= gunzip_force; - break; - case 't': - flags |= gunzip_test; - break; - case 'h': - default: - show_usage(); /* exit's inside usage */ + } else { + /* Parse any options */ + while ((opt = getopt(argc, argv, "ctfh")) != -1) { + switch (opt) { + case 'c': + flags |= gunzip_to_stdout; + break; + case 'f': + flags |= gunzip_force; + break; + case 't': + flags |= gunzip_test; + break; + case 'h': + default: + show_usage(); /* exit's inside usage */ + } } } } @@ -1116,7 +1115,6 @@ extern int gunzip_main(int argc, char **argv) if ((flags & gunzip_force) == 0) { error_msg_and_die("data not written to terminal. Use -f to force it."); } - strcpy(if_name, "stdin"); } else { if_name = strdup(argv[optind]); /* Open input file */ @@ -1135,8 +1133,6 @@ extern int gunzip_main(int argc, char **argv) if (isatty(fileno(out_file)) && ((flags & gunzip_force) == 0)) { error_msg_and_die("data not written to terminal. Use -f to force it."); } - - strcpy(of_name, "stdout"); } else if (flags & gunzip_test) { out_file = xfopen("/dev/null", "w"); /* why does test use filenum 2 ? */ } else { -- cgit v1.2.3