aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-02-05 19:25:29 +0000
committerkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-02-05 19:25:29 +0000
commit79dd6d8d02b25664eed629e0b679e00cc0d64825 (patch)
tree2ab7c0d821bb08b2903a2fb9dc5b74c4f0b3fa6e
parentda01eb57dde6fe0bf4cd6b8cf0cf7d657d593ede (diff)
downloadbusybox-w32-79dd6d8d02b25664eed629e0b679e00cc0d64825.tar.gz
busybox-w32-79dd6d8d02b25664eed629e0b679e00cc0d64825.tar.bz2
busybox-w32-79dd6d8d02b25664eed629e0b679e00cc0d64825.zip
* include/usage.h (gzip_trivial_usage): Make FILE optional.
(gzip_full_usage): Note behavior when FILE is unspecified. git-svn-id: svn://busybox.net/trunk/busybox@4187 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--include/usage.h4
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"