From 1d4f8cd23a3e4aab7c57b3ac1aa197979cd0d56b Mon Sep 17 00:00:00 2001 From: bde Date: Fri, 11 Dec 1998 11:04:19 +0000 Subject: Fixed missing 'p' and `-' flags and other defects in the usage message. Fixed some style bugs. --- sbin/shutdown/shutdown.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'sbin/shutdown') diff --git a/sbin/shutdown/shutdown.c b/sbin/shutdown/shutdown.c index a2d487d..6c7d51e 100644 --- a/sbin/shutdown/shutdown.c +++ b/sbin/shutdown/shutdown.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)shutdown.c 8.2 (Berkeley) 2/16/94"; #endif static const char rcsid[] = - "$Id: shutdown.c,v 1.13 1998/08/03 06:22:43 charnier Exp $"; + "$Id: shutdown.c,v 1.14 1998/12/10 23:54:02 msmith Exp $"; #endif /* not lint */ #include @@ -151,8 +151,8 @@ main(argc, argv) if (argc < 1) usage(); - if ((doreboot + dohalt + dopower) > 1) { - warnx("incompatible switches -h, -p and -r"); + if (doreboot + dohalt + dopower > 1) { + warnx("incompatible switches -h, -p and -r"); usage(); } getoffset(*argv++); @@ -493,6 +493,7 @@ badtime() void usage() { - fprintf(stderr, "usage: shutdown [-hknr] shutdowntime [ message ]\n"); + fprintf(stderr, + "usage: shutdown [-] [-hknpr] time [warning-message ...]\n"); exit(1); } -- cgit v1.1