aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Nordier <rnordier@FreeBSD.org>1998-11-05 07:18:41 +0000
committerRobert Nordier <rnordier@FreeBSD.org>1998-11-05 07:18:41 +0000
commit57037d27d5a5902e55d234ca57494f34ffb6a7c3 (patch)
treec91455bc05903bff3fc95a1b319353299d42d29f
parent875e602afe035081bddbc9bf7a212ac47a0da661 (diff)
downloadsrc-57037d27d5a5902e55d234ca57494f34ffb6a7c3.tar.gz
src-57037d27d5a5902e55d234ca57494f34ffb6a7c3.zip
Add -c option to usage string.
PR: 8568 Submitted by: Ryan Younce <ryany@pobox.com>
Notes
Notes: svn path=/head/; revision=40925
-rw-r--r--usr.bin/du/du.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/du/du.c b/usr.bin/du/du.c
index 041c1a619b42..2dae19bd4761 100644
--- a/usr.bin/du/du.c
+++ b/usr.bin/du/du.c
@@ -263,6 +263,6 @@ static void
usage()
{
(void)fprintf(stderr,
- "usage: du [-H | -L | -P] [-a | -s | -d depth] [-k] [-x] [file ...]\n");
+ "usage: du [-H | -L | -P] [-a | -s | -d depth] [-c] [-k] [-x] [file ...]\n");
exit(1);
}