diff options
author | bde <bde@FreeBSD.org> | 1998-12-11 11:04:19 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-12-11 11:04:19 +0000 |
commit | 1d4f8cd23a3e4aab7c57b3ac1aa197979cd0d56b (patch) | |
tree | de5aeedf365ff85368a400b03a579a04f3119bc5 /sbin/shutdown | |
parent | f64f0dac03fbdee15bce77fc8f8271e944eaf256 (diff) | |
download | FreeBSD-src-1d4f8cd23a3e4aab7c57b3ac1aa197979cd0d56b.zip FreeBSD-src-1d4f8cd23a3e4aab7c57b3ac1aa197979cd0d56b.tar.gz |
Fixed missing 'p' and `-' flags and other defects in the usage message.
Fixed some style bugs.
Diffstat (limited to 'sbin/shutdown')
-rw-r--r-- | sbin/shutdown/shutdown.c | 9 |
1 files changed, 5 insertions, 4 deletions
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 <sys/param.h> @@ -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); } |