diff options
author | 2007-07-05 02:12:28 +0000 | |
---|---|---|
committer | 2007-07-05 02:12:28 +0000 | |
commit | 5d35fe9dc38d56eed50758dd8e7a155932f982bf (patch) | |
tree | 3cddb9664ed90c0b4632aab4809d7b91cad3235f | |
parent | fix dmesg formatting error when hardware random number generator is present (diff) | |
download | wireguard-openbsd-5d35fe9dc38d56eed50758dd8e7a155932f982bf.tar.xz wireguard-openbsd-5d35fe9dc38d56eed50758dd8e7a155932f982bf.zip |
Remove unused variable; Lawrence Teo
-rw-r--r-- | usr.bin/whois/whois.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/whois/whois.c b/usr.bin/whois/whois.c index a996bbf1039..c1552d66baa 100644 --- a/usr.bin/whois/whois.c +++ b/usr.bin/whois/whois.c @@ -1,4 +1,4 @@ -/* $OpenBSD: whois.c,v 1.38 2006/09/17 17:07:16 henning Exp $ */ +/* $OpenBSD: whois.c,v 1.39 2007/07/05 02:12:28 millert Exp $ */ /* * Copyright (c) 1980, 1993 @@ -76,9 +76,9 @@ int main(int argc, char *argv[]) { int ch, flags, rval; - char *host, *name, *country, *server; + char *host, *name, *country; - country = host = server = NULL; + country = host = NULL; flags = rval = 0; while ((ch = getopt(argc, argv, "aAc:dgh:ilmp:qQrR6")) != -1) switch (ch) { |