diff options
author | Matt Kraai <kraai@debian.org> | 2002-02-05 19:34:53 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2002-02-05 19:34:53 +0000 |
commit | 592a3e63ee06604eb27a888ffb03a0ff3dbf5cf0 (patch) | |
tree | aba959ad9192f768f3dea810888cd24bbe29140c | |
parent | 273af73317a9f0b697a3240aa6733d30137878e7 (diff) | |
download | busybox-w32-592a3e63ee06604eb27a888ffb03a0ff3dbf5cf0.tar.gz busybox-w32-592a3e63ee06604eb27a888ffb03a0ff3dbf5cf0.tar.bz2 busybox-w32-592a3e63ee06604eb27a888ffb03a0ff3dbf5cf0.zip |
* archival/gzip.c (gzip_main): Display usage if given multiple files.
-rw-r--r-- | archival/gzip.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/archival/gzip.c b/archival/gzip.c index 436393ed5..732a83e90 100644 --- a/archival/gzip.c +++ b/archival/gzip.c | |||
@@ -1246,6 +1246,9 @@ int gzip_main(int argc, char **argv) | |||
1246 | tostdout = 1; | 1246 | tostdout = 1; |
1247 | } | 1247 | } |
1248 | 1248 | ||
1249 | if (argc - optind > 1) | ||
1250 | show_usage (); | ||
1251 | |||
1249 | if (isatty(fileno(stdout)) && tostdout==1 && force==0) | 1252 | if (isatty(fileno(stdout)) && tostdout==1 && force==0) |
1250 | error_msg_and_die( "compressed data not written to terminal. Use -f to force it."); | 1253 | error_msg_and_die( "compressed data not written to terminal. Use -f to force it."); |
1251 | 1254 | ||