diff options
author | Matt Kraai <kraai@debian.org> | 2002-02-05 19:25:29 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2002-02-05 19:25:29 +0000 |
commit | 273af73317a9f0b697a3240aa6733d30137878e7 (patch) | |
tree | 2ab7c0d821bb08b2903a2fb9dc5b74c4f0b3fa6e | |
parent | eb83478528c46edf140194f7c612f6beedb60929 (diff) | |
download | busybox-w32-273af73317a9f0b697a3240aa6733d30137878e7.tar.gz busybox-w32-273af73317a9f0b697a3240aa6733d30137878e7.tar.bz2 busybox-w32-273af73317a9f0b697a3240aa6733d30137878e7.zip |
* include/usage.h (gzip_trivial_usage): Make FILE optional.
(gzip_full_usage): Note behavior when FILE is unspecified.
-rw-r--r-- | include/usage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/usage.h b/include/usage.h index 9ecdd9f24..2e65c6f45 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -628,10 +628,10 @@ | |||
628 | "-rw-rw-r-- 1 andersen andersen 1761280 Apr 14 17:47 /tmp/BusyBox-0.43.tar\n" | 628 | "-rw-rw-r-- 1 andersen andersen 1761280 Apr 14 17:47 /tmp/BusyBox-0.43.tar\n" |
629 | 629 | ||
630 | #define gzip_trivial_usage \ | 630 | #define gzip_trivial_usage \ |
631 | "[OPTION]... FILE" | 631 | "[OPTION]... [FILE]" |
632 | #define gzip_full_usage \ | 632 | #define gzip_full_usage \ |
633 | "Compress FILE with maximum compression.\n" \ | 633 | "Compress FILE with maximum compression.\n" \ |
634 | "When FILE is '-', reads standard input. Implies -c.\n\n" \ | 634 | "When FILE is '-' or unspecified, reads standard input. Implies -c.\n\n" \ |
635 | "Options:\n" \ | 635 | "Options:\n" \ |
636 | "\t-c\tWrite output to standard output instead of FILE.gz\n" \ | 636 | "\t-c\tWrite output to standard output instead of FILE.gz\n" \ |
637 | "\t-d\tdecompress" | 637 | "\t-d\tdecompress" |