summaryrefslogtreecommitdiff
path: root/net/net-snmp-current/patches/patch-af
diff options
context:
space:
mode:
Diffstat (limited to 'net/net-snmp-current/patches/patch-af')
-rw-r--r--net/net-snmp-current/patches/patch-af51
1 files changed, 0 insertions, 51 deletions
diff --git a/net/net-snmp-current/patches/patch-af b/net/net-snmp-current/patches/patch-af
deleted file mode 100644
index 800130e7509..00000000000
--- a/net/net-snmp-current/patches/patch-af
+++ /dev/null
@@ -1,51 +0,0 @@
-$NetBSD: patch-af,v 1.1.1.1 2002/03/14 06:29:03 itojun Exp $
-
---- agent/mibgroup/mibII/interfaces.c- Thu Mar 14 11:47:07 2002
-+++ agent/mibgroup/mibII/interfaces.c Thu Mar 14 11:49:42 2002
-@@ -166,7 +166,7 @@
- #ifdef freebsd3
- # define USE_SYSCTL_IFLIST
- #else
--# if defined(CTL_NET) && !defined(freebsd2)
-+# if defined(CTL_NET) && !defined(freebsd2) && !defined(netbsd1)
- # ifdef PF_ROUTE
- # ifdef NET_RT_IFLIST
- # ifndef netbsd1
-@@ -1783,19 +1783,36 @@
- cp = strchr(saveName, '\0');
- string_append_int (cp, ifnet.if_unit);
- #endif
-- if (1 || strcmp(saveName,"lo0") != 0) { /* XXX */
-+ if (1) { /* XXX */
- /*
- * Try to find an address for this interface
- */
-
- auto_nlist(IFADDR_SYMBOL, (char *)&ia, sizeof(ia));
-+#ifdef netbsd1
-+ ia = (struct in_ifaddr *)ifnet.if_addrlist.tqh_first;
-+#endif
- while (ia) {
- klookup((unsigned long)ia , (char *)&in_ifaddr, sizeof(in_ifaddr));
-+{
-+#ifdef netbsd1
-+#define CP(x) ((char *)(x))
-+ char *cp; struct sockaddr *sa;
-+ cp = (CP(in_ifaddr.ia_ifa.ifa_addr) - CP(ia)) +
-+ CP(&in_ifaddr); sa = (struct sockaddr *)cp;
-+
-+if (sa->sa_family == AF_INET)
-+#endif
- if (in_ifaddr.ia_ifp == ifnetaddr) {
- has_ipaddr = 1; /* this IF has IP-address */
- break;
- }
-+}
-+#ifdef netbsd1
-+ ia = (struct in_ifaddr *)in_ifaddr.ia_ifa.ifa_list.tqe_next;
-+#else
- ia = in_ifaddr.ia_next;
-+#endif
- }
-
- #if !defined(netbsd1) && !defined(freebsd2) && !defined(openbsd2) && !defined(STRUCT_IFNET_HAS_IF_ADDRLIST)