From 5bcfc9ba1aaaec3a413d39d60e6a904daafa2cc1 Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Mon, 7 May 2001 12:01:58 +0000 Subject: Tolerate -q argument, if -q is passed give a warning and continue rather than just fail --- archival/gunzip.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'archival/gunzip.c') diff --git a/archival/gunzip.c b/archival/gunzip.c index db5f6ee55..ed4a3de36 100644 --- a/archival/gunzip.c +++ b/archival/gunzip.c @@ -87,7 +87,7 @@ extern int gunzip_main(int argc, char **argv) if (strcmp(applet_name, "zcat") == 0) flags |= gunzip_to_stdout; - while ((opt = getopt(argc, argv, "ctfhd")) != -1) { + while ((opt = getopt(argc, argv, "ctfhdq")) != -1) { switch (opt) { case 'c': flags |= gunzip_to_stdout; @@ -100,6 +100,8 @@ extern int gunzip_main(int argc, char **argv) break; case 'd': /* Used to convert gzip to gunzip. */ break; + case 'q': + error_msg("-q option not supported, ignored"); case 'h': default: show_usage(); /* exit's inside usage */ -- cgit v1.2.3