diff options
-rw-r--r-- | sbin/modload/modload.c | 7 | ||||
-rw-r--r-- | sbin/modunload/modunload.c | 6 | ||||
-rw-r--r-- | usr.bin/modstat/modstat.c | 6 |
3 files changed, 9 insertions, 10 deletions
diff --git a/sbin/modload/modload.c b/sbin/modload/modload.c index c554c3b64c3..506a0aa230e 100644 --- a/sbin/modload/modload.c +++ b/sbin/modload/modload.c @@ -1,4 +1,4 @@ -/* $OpenBSD: modload.c,v 1.4 1996/06/23 14:31:05 deraadt Exp $ */ +/* $OpenBSD: modload.c,v 1.5 1996/07/02 06:37:52 deraadt Exp $ */ /* $NetBSD: modload.c,v 1.13 1995/05/28 05:21:58 jtc Exp $ */ /* @@ -109,10 +109,9 @@ void usage() { - fprintf(stderr, "usage:\n"); - fprintf(stderr, "modload [-d] [-v] [-A <kernel>] [-e <entry]\n"); + fprintf(stderr, "usage: modload [-d] [-v] [-A <kernel>] [-e <entry]\n"); fprintf(stderr, - "[-p <postinstall>] [-o <output file>] <input file>\n"); + "\t[-p <postinstall>] [-o <output file>] <input file>\n"); exit(1); } diff --git a/sbin/modunload/modunload.c b/sbin/modunload/modunload.c index d56646b474d..a8790a3072d 100644 --- a/sbin/modunload/modunload.c +++ b/sbin/modunload/modunload.c @@ -1,4 +1,4 @@ -/* $OpenBSD: modunload.c,v 1.2 1996/06/21 11:39:17 mickey Exp $ */ +/* $OpenBSD: modunload.c,v 1.3 1996/07/02 06:37:55 deraadt Exp $ */ /* $NetBSD: modunload.c,v 1.9 1995/05/28 05:23:05 jtc Exp $ */ /* @@ -52,8 +52,8 @@ void usage() { - fprintf(stderr, "usage:\n"); - fprintf(stderr, "modunload [-i <module id>] [-n <module name>]\n"); + fprintf(stderr, + "usage: modunload [-i <module id>] [-n <module name>]\n"); exit(1); } diff --git a/usr.bin/modstat/modstat.c b/usr.bin/modstat/modstat.c index 743ad64ea3b..964262e94c4 100644 --- a/usr.bin/modstat/modstat.c +++ b/usr.bin/modstat/modstat.c @@ -1,4 +1,4 @@ -/* * $OpenBSD: modstat.c,v 1.3 1996/06/26 05:37:15 deraadt Exp $*/ +/* * $OpenBSD: modstat.c,v 1.4 1996/07/02 06:37:57 deraadt Exp $*/ /* * Copyright (c) 1993 Terrence R. Lambert. * All rights reserved. @@ -50,8 +50,8 @@ void usage() { - fprintf(stderr, "usage:\n"); - fprintf(stderr, "modstat [-i <module id>] [-n <module name>]\n"); + fprintf(stderr, + "usage: modstat [-i <module id>] [-n <module name>]\n"); exit(1); } |