summaryrefslogtreecommitdiff
path: root/src/rmdir.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1993-10-19 00:00:06 +0000
committerJim Meyering <jim@meyering.net>1993-10-19 00:00:06 +0000
commit723d3d528db8b3abb05357bf5a7af7173c1636e7 (patch)
tree23fc7ea7e6b0721e7705f60a7c14bd9dcafd5eca /src/rmdir.c
parent712ac6d5a0122dbcbc89669143580de1326f1d46 (diff)
downloadcoreutils-723d3d528db8b3abb05357bf5a7af7173c1636e7.tar.xz
merge with 3.8.4k
Diffstat (limited to 'src/rmdir.c')
-rw-r--r--src/rmdir.c20
1 files changed, 8 insertions, 12 deletions
diff --git a/src/rmdir.c b/src/rmdir.c
index 8859f94ea..c863973f7 100644
--- a/src/rmdir.c
+++ b/src/rmdir.c
@@ -147,21 +147,17 @@ static void
usage (status)
int status;
{
- fprintf (status == 0 ? stdout : stderr, "\
-Usage: %s [OPTION]... DIRECTORY...\n\
-",
- program_name);
-
- if (status == 0)
- printf ("\
+ if (status != 0)
+ fprintf (stderr, "Try `%s --help' for more information.\n",
+ program_name);
+ else
+ {
+ printf ("Usage: %s [OPTION]... DIRECTORY...\n", program_name);
+ printf ("\
\n\
-p, --parents remove explicit parent directories if being emptied\n\
--help display this help and exit\n\
--version output version information and exit\n");
-
- else
- fprintf (stderr, "Try `%s --help' for more information.\n",
- program_name);
-
+ }
exit (status);
}