summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-07-10 03:56:45 +0000
committerJim Meyering <jim@meyering.net>1996-07-10 03:56:45 +0000
commit44b11d6e67a9a7133e46a8fa3795c25a0ae55326 (patch)
tree4f1ed38f618629320e3185d9ec78a6c82a915647
parent108f50670d88c12089fa84bc5b1944761c9ce548 (diff)
downloadcoreutils-44b11d6e67a9a7133e46a8fa3795c25a0ae55326.tar.gz
(usage): Fix parentheses.FILEUTILS-3_12s
-rw-r--r--src/dircolors.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dircolors.c b/src/dircolors.c
index 765c1e9d6..94a36a37d 100644
--- a/src/dircolors.c
+++ b/src/dircolors.c
@@ -105,15 +105,15 @@ usage (int status)
{
printf (_("Usage: %s [OPTION]... [FILE]\n"), program_name);
printf (_("\
- printf (_("\
Output commands to set the LS_COLOR environment variable.\n\
\n\
Determine format of output:\n\
-b, --sh, --bourne-shell output Bourne shell code to set LS_COLOR\n\
- -c, --csh, --c-shell output C shell code to set LS_COLOR\n"));
+ -c, --csh, --c-shell output C shell code to set LS_COLOR\n\
-p, --print-data-base output defaults\n\
-h, --help display this help and exit\n\
--version output version information and exit\n\
+"));
}
exit (status == 0 ? EXIT_SUCCESS : EXIT_FAILURE);