summaryrefslogtreecommitdiffstats
path: root/usr.bin/man/man.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1998-07-20 01:15:24 +0000
committerderaadt <deraadt@openbsd.org>1998-07-20 01:15:24 +0000
commitb2df21559e5dd48ffc230ca92b6c62b40579856e (patch)
tree7920922551acc9b44f449413f7886b27b7b4dc65 /usr.bin/man/man.c
parenttypo & warnings make gcc unhappy. (diff)
downloadwireguard-openbsd-b2df21559e5dd48ffc230ca92b6c62b40579856e.tar.xz
wireguard-openbsd-b2df21559e5dd48ffc230ca92b6c62b40579856e.zip
finish off fixing PR 536 completely
Diffstat (limited to 'usr.bin/man/man.c')
-rw-r--r--usr.bin/man/man.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/man/man.c b/usr.bin/man/man.c
index e8be8b551cc..f463bc64bcf 100644
--- a/usr.bin/man/man.c
+++ b/usr.bin/man/man.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: man.c,v 1.9 1998/07/01 11:23:40 espie Exp $ */
+/* $OpenBSD: man.c,v 1.10 1998/07/20 01:15:25 deraadt Exp $ */
/* $NetBSD: man.c,v 1.7 1995/09/28 06:05:34 tls Exp $ */
/*
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)man.c 8.17 (Berkeley) 1/31/95";
#else
-static char rcsid[] = "$OpenBSD: man.c,v 1.9 1998/07/01 11:23:40 espie Exp $";
+static char rcsid[] = "$OpenBSD: man.c,v 1.10 1998/07/20 01:15:25 deraadt Exp $";
#endif
#endif /* not lint */
@@ -766,5 +766,7 @@ usage()
{
(void)fprintf(stderr, "usage: %s [-achw] [-C file] [-M path] [-m path] "
"[-s section] [-S subsection] [section] title ...\n", __progname);
+ (void)fprintf(stderr, "usage: %s -k keyword\n", __progname);
+ (void)fprintf(stderr, "usage: %s -f command\n", __progname);
exit(1);
}