diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-07-20 01:15:26 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-07-20 01:15:26 +0000 |
commit | 122ba5f1d5ed1687064d0f4df26688317cdf1cc8 (patch) | |
tree | 5fa148deef784bbacae23f9db932035ec3fed6e5 /usr.bin/man/man.c | |
parent | 9b5f42d3cb353ee09c955ec2466e59612d16f066 (diff) |
finish off fixing PR 536 completely
Diffstat (limited to 'usr.bin/man/man.c')
-rw-r--r-- | usr.bin/man/man.c | 6 |
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); } |