summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-07-02 06:37:58 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-07-02 06:37:58 +0000
commit18834530fbaf59f00788eb643ee96e332b195804 (patch)
tree78a3bf301e2c0264b954620967f3b01108cb6a37 /sbin
parent0f694ae96d84f79a0af4faf8665e6504ab09261e (diff)
simpler usage line
Diffstat (limited to 'sbin')
-rw-r--r--sbin/modload/modload.c7
-rw-r--r--sbin/modunload/modunload.c6
2 files changed, 6 insertions, 7 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);
}