diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-01-21 00:55:56 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-01-21 00:55:56 +0000 |
commit | 6a78080cdc5b731da9d90f1e7d9dffb045ef5c26 (patch) | |
tree | 7faa0703484577a70d8b47c8953594e615a3c2dc /usr.bin/whois | |
parent | 06e77296f033245e4c822226368dbc032f50e693 (diff) |
correct usage; ok deraadt@
Diffstat (limited to 'usr.bin/whois')
-rw-r--r-- | usr.bin/whois/whois.1 | 4 | ||||
-rw-r--r-- | usr.bin/whois/whois.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/whois/whois.1 b/usr.bin/whois/whois.1 index 9a07e4a82b5..7e35a1e97e3 100644 --- a/usr.bin/whois/whois.1 +++ b/usr.bin/whois/whois.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: whois.1,v 1.14 2000/03/23 21:39:56 aaron Exp $ +.\" $OpenBSD: whois.1,v 1.15 2002/01/21 00:55:55 stevesk Exp $ .\" $NetBSD: whois.1,v 1.5 1995/08/31 21:51:32 jtc Exp $ .\" .\" Copyright (c) 1985, 1990, 1993 @@ -42,7 +42,7 @@ .Nd Internet domain name and network number directory service .Sh SYNOPSIS .Nm whois -.Op Fl adgipqQrR +.Op Fl adgimpqQrR .Op Fl h Ar host .Ar name Op Ar ... .Sh DESCRIPTION diff --git a/usr.bin/whois/whois.c b/usr.bin/whois/whois.c index 3321624d5c9..d92cdb88d40 100644 --- a/usr.bin/whois/whois.c +++ b/usr.bin/whois/whois.c @@ -1,4 +1,4 @@ -/* $OpenBSD: whois.c,v 1.12 2001/10/04 19:28:58 millert Exp $ */ +/* $OpenBSD: whois.c,v 1.13 2002/01/21 00:55:55 stevesk Exp $ */ /* * Copyright (c) 1980, 1993 @@ -43,7 +43,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)whois.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: whois.c,v 1.12 2001/10/04 19:28:58 millert Exp $"; +static char rcsid[] = "$OpenBSD: whois.c,v 1.13 2002/01/21 00:55:55 stevesk Exp $"; #endif #endif /* not lint */ @@ -303,6 +303,6 @@ usage() { (void)fprintf(stderr, - "usage: whois [-adgimpqQrR6] [-h hostname] name ...\n"); + "usage: whois [-adgimpqQrR] [-h hostname] name ...\n"); exit(EX_USAGE); } |