diff options
author | 2007-01-09 18:01:53 +0000 | |
---|---|---|
committer | 2007-01-09 18:01:53 +0000 | |
commit | b36d61b4389b6b750c7b26525b331d5a892a7100 (patch) | |
tree | 006b38b2954d28caf0e5088554dd18f592922a44 /usr.bin/man/man.c | |
parent | add remote handler for the cvs watch command; not linked to the build. (diff) | |
download | wireguard-openbsd-b36d61b4389b6b750c7b26525b331d5a892a7100.tar.xz wireguard-openbsd-b36d61b4389b6b750c7b26525b331d5a892a7100.zip |
fix usage
Diffstat (limited to 'usr.bin/man/man.c')
-rw-r--r-- | usr.bin/man/man.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/man/man.c b/usr.bin/man/man.c index 19913b47107..62acb6d680a 100644 --- a/usr.bin/man/man.c +++ b/usr.bin/man/man.c @@ -1,4 +1,4 @@ -/* $OpenBSD: man.c,v 1.32 2006/12/14 19:25:58 jasper Exp $ */ +/* $OpenBSD: man.c,v 1.33 2007/01/09 18:01:53 deraadt Exp $ */ /* $NetBSD: man.c,v 1.7 1995/09/28 06:05:34 tls Exp $ */ /* @@ -40,7 +40,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.32 2006/12/14 19:25:58 jasper Exp $"; +static char rcsid[] = "$OpenBSD: man.c,v 1.33 2007/01/09 18:01:53 deraadt Exp $"; #endif #endif /* not lint */ @@ -781,7 +781,7 @@ usage(void) (void)fprintf(stderr, "usage: %s [-achw] [-C file] [-M path] [-m path] " "[-S subsection] [-s section]\n\t [section] name [...]\n", __progname); - (void)fprintf(stderr, "usage: %s -f command\n", __progname); - (void)fprintf(stderr, "usage: %s -k keyword\n", __progname); + (void)fprintf(stderr, " %s -f command\n", __progname); + (void)fprintf(stderr, " %s -k keyword\n", __progname); exit(1); } |