diff options
author | agc <agc@pkgsrc.org> | 2003-12-15 17:02:22 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2003-12-15 17:02:22 +0000 |
commit | 0dad84bd0cecbad360f12b0e3354ccaa31eb30e0 (patch) | |
tree | b1471cd849eb3ca7cc8a3ea9eef5ae90e47ac126 /net/ipw/patches | |
parent | 336530e37ab9ee4de60153c04b8eec945763bd88 (diff) | |
download | pkgsrc-0dad84bd0cecbad360f12b0e3354ccaa31eb30e0.tar.gz |
Apply patch from Geoff C. Wing from PR 22475 to make ipw work properly again
after changes to the ARIN whois response.
Bump PKGREVISION
Diffstat (limited to 'net/ipw/patches')
-rw-r--r-- | net/ipw/patches/patch-ab | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/net/ipw/patches/patch-ab b/net/ipw/patches/patch-ab new file mode 100644 index 00000000000..f2414119b87 --- /dev/null +++ b/net/ipw/patches/patch-ab @@ -0,0 +1,81 @@ +$NetBSD: patch-ab,v 1.1 2003/12/15 17:02:22 agc Exp $ + +--- ipw.c.orig 1999-03-30 08:04:12.000000000 +0100 ++++ ipw.c 2003-12-15 16:58:12.000000000 +0000 +@@ -782,7 +782,7 @@ + if (!p) + return NULL; + +- for (q = p + rwhois_prefix_len; *q && !isspace (*q); q++) ++ for (q = p + rwhois_prefix_len; *q && !isspace (*q) && *q != ':'; q++) + continue; + srvr_len = q - p; + server = (char *) xmalloc (srvr_len + 1); +@@ -1745,14 +1745,14 @@ + { + static char const ripe1[] = "European Regional Internet Registry/RIPE"; + static char const ripe2[] = "RIPE NCC (NET-RIPE-NCC-"; +- static char const apnic[] = "Asia Pacific Network Information Center"; ++ static char const apnic[] = "Asia Pacific Network Information Centre"; + static char const nomatch[] = "No match"; + static char const updated[] = "Record last updated on "; + static char const hostname[] = "Hostname:"; + auto char arin_query[200]; + + try_next_addr: +- strcpy (arin_query, "net "); ++ strcpy (arin_query, "n "); + strcat (arin_query, dotted_blockname); + whois_data = whois (arin_server, arin_query); + if (whois_data == NULL) /* Server must be down! */ +@@ -1760,8 +1760,15 @@ + if (strncmp (whois_data, nomatch, sizeof nomatch -1)) + { + register char const *rwhois_data; ++ char const *orgname = strstr (whois_data, "OrgName:"); + +- if (!strncmp (whois_data, ripe1, sizeof ripe1 - 1)) ++ if (orgname) ++ { ++ orgname += sizeof "OrgName:"; ++ while (isspace (*orgname)) ++ orgname++; ++ } ++ if (orgname && !strncmp (orgname, ripe1, sizeof ripe1 - 1)) + { + if (try_ripe (dotted_quad)) + break; +@@ -1769,7 +1776,7 @@ + return 0; + } + +- if (!strncmp (whois_data, ripe2, sizeof ripe2 - 1)) ++ if (orgname && !strncmp (orgname, ripe2, sizeof ripe2 - 1)) + { + if (try_ripe (dotted_quad)) + break; +@@ -1777,7 +1784,7 @@ + return 0; + } + +- if (!strncmp (whois_data, apnic, sizeof apnic - 1)) ++ if (orgname && !strncmp (orgname, apnic, sizeof apnic - 1)) + { + if (try_apnic (dotted_quad)) + break; +@@ -1802,6 +1809,7 @@ + goto try_next_addr; + } + ++#if 0 /* needs fixing */ + if (!substr (whois_data, updated)) + { + /* Handle a special case. ARIN has returned to us a list of +@@ -1813,6 +1821,7 @@ + if ((whois_data = arin_grunge (whois_data, addr)) == NULL) + return 1; + } ++#endif + if ((rwhois_data = fetch_rwhois_data (whois_data, dotted_quad))) + return present_rwhois_style_results (rwhois_data, whois_data); + else |