diff options
author | Glenn L McGrath | 2001-05-07 12:06:37 +0000 |
---|---|---|
committer | Glenn L McGrath | 2001-05-07 12:06:37 +0000 |
commit | 713b3987003ce61e3b1c9003f42b8490d666a850 (patch) | |
tree | 05984290f33fa65703ba03a3743e95a48c42baee | |
parent | 5bcfc9ba1aaaec3a413d39d60e6a904daafa2cc1 (diff) | |
download | busybox-713b3987003ce61e3b1c9003f42b8490d666a850.zip busybox-713b3987003ce61e3b1c9003f42b8490d666a850.tar.gz |
woops, forgot the break statment
-rw-r--r-- | archival/gunzip.c | 1 | ||||
-rw-r--r-- | gunzip.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/archival/gunzip.c b/archival/gunzip.c index ed4a3de..6f5e63d 100644 --- a/archival/gunzip.c +++ b/archival/gunzip.c @@ -102,6 +102,7 @@ extern int gunzip_main(int argc, char **argv) break; case 'q': error_msg("-q option not supported, ignored"); + break; case 'h': default: show_usage(); /* exit's inside usage */ @@ -102,6 +102,7 @@ extern int gunzip_main(int argc, char **argv) break; case 'q': error_msg("-q option not supported, ignored"); + break; case 'h': default: show_usage(); /* exit's inside usage */ |