=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/whois/whois.c,v retrieving revision 1.41 retrieving revision 1.42 diff -c -r1.41 -r1.42 *** src/usr.bin/whois/whois.c 2007/08/29 08:59:18 1.41 --- src/usr.bin/whois/whois.c 2010/03/04 18:17:03 1.42 *************** *** 1,4 **** ! /* $OpenBSD: whois.c,v 1.41 2007/08/29 08:59:18 henning Exp $ */ /* * Copyright (c) 1980, 1993 --- 1,4 ---- ! /* $OpenBSD: whois.c,v 1.42 2010/03/04 18:17:03 krw Exp $ */ /* * Copyright (c) 1980, 1993 *************** *** 56,62 **** #define MNICHOST "whois.ra.net" #define LNICHOST "whois.lacnic.net" #define AFNICHOST "whois.afrinic.net" - #define SNICHOST "whois.6bone.net" #define BNICHOST "whois.registro.br" #define QNICHOST_TAIL ".whois-servers.net" --- 56,61 ---- *************** *** 82,88 **** country = host = NULL; flags = rval = 0; ! while ((ch = getopt(argc, argv, "aAc:dgh:ilmp:qQrR6")) != -1) switch (ch) { case 'a': host = ANICHOST; --- 81,87 ---- country = host = NULL; flags = rval = 0; ! while ((ch = getopt(argc, argv, "aAc:dgh:ilmp:qQrR")) != -1) switch (ch) { case 'a': host = ANICHOST; *************** *** 125,133 **** break; case 'R': host = RUNICHOST; - break; - case '6': - host = SNICHOST; break; default: usage(); --- 124,129 ----