diff options
author | ache <ache@FreeBSD.org> | 2003-06-29 23:56:31 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2003-06-29 23:56:31 +0000 |
commit | 2973509c1f0462a463fb307ef94fbfc3e80a5c18 (patch) | |
tree | 57384f9f9bb4acbe1066b7467cae4be282440219 /usr.bin/whois | |
parent | 7f75cc45e943577f1bfd1324bb39e212b9531d54 (diff) | |
download | FreeBSD-src-2973509c1f0462a463fb307ef94fbfc3e80a5c18.zip FreeBSD-src-2973509c1f0462a463fb307ef94fbfc3e80a5c18.tar.gz |
Back out .SU workaround - people at whois-servers.net set up
su.whois-servers.net
Diffstat (limited to 'usr.bin/whois')
-rw-r--r-- | usr.bin/whois/whois.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/usr.bin/whois/whois.c b/usr.bin/whois/whois.c index 6b8924d..729c2e2 100644 --- a/usr.bin/whois/whois.c +++ b/usr.bin/whois/whois.c @@ -175,8 +175,6 @@ main(int argc, char *argv[]) } while (argc-- > 0) { if (country != NULL) { - if (strcasecmp(country, "su") == 0) - country = "ru"; s_asprintf(&qnichost, "%s%s", country, QNICHOST_TAIL); whois(*argv, qnichost, flags); } else if (use_qnichost) @@ -218,11 +216,8 @@ choose_server(char *domain) return (NULL); if (isdigit((unsigned char)*++pos)) s_asprintf(&retval, "%s", ANICHOST); - else { - if (strcasecmp(pos, "su") == 0) - pos = "ru"; + else s_asprintf(&retval, "%s%s", pos, QNICHOST_TAIL); - } return (retval); } |