summaryrefslogtreecommitdiff
path: root/src/who.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1993-10-26 00:11:14 +0000
committerJim Meyering <jim@meyering.net>1993-10-26 00:11:14 +0000
commitd7c526e66d7c4d3d11ca80c141b9fae18f0a9668 (patch)
tree6aad3a466a53d24a42c6b94a98edd429ff3e95b8 /src/who.c
parentcfe240bbd8520c852962f5feac1cfc5cf4903eb4 (diff)
downloadcoreutils-d7c526e66d7c4d3d11ca80c141b9fae18f0a9668.tar.xz
merge with 1.8.1i
Diffstat (limited to 'src/who.c')
-rw-r--r--src/who.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/who.c b/src/who.c
index 8b122c85b..f01da1b09 100644
--- a/src/who.c
+++ b/src/who.c
@@ -462,17 +462,13 @@ static void
usage (status)
int status;
{
- fprintf (status == 0 ? stdout : stderr, "\
-Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n\
-",
- program_name);
-
if (status != 0)
fprintf (stderr, "Try `%s --help' for more information.\n",
program_name);
else
-
- printf ("\
+ {
+ printf ("Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n", program_name);
+ printf ("\
\n\
-H, --heading print line of column headings\n\
-T, -w, --mesg add user's message status as +, - or ?\n\
@@ -488,6 +484,6 @@ Usage: %s [OPTION]... [ FILE | ARG1 ARG2 ]\n\
If FILE not given, uses /etc/utmp. /etc/wtmp as FILE is common.\n\
If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n\
");
-
+ }
exit (status);
}