diff options
author | Garrett Wollman <wollman@FreeBSD.org> | 2004-02-23 04:42:13 +0000 |
---|---|---|
committer | Garrett Wollman <wollman@FreeBSD.org> | 2004-02-23 04:42:13 +0000 |
commit | 60aab665670e50cb18bba45ee25f2ed091759741 (patch) | |
tree | 924c1af9c149083e0626ceb279b67ad6ca69e630 /net/net-snmp/files/patch-snmpTCPIPv6Domain.c | |
parent | BROKEN on !i386: Does not compile (diff) |
Say hello to the new "net-mgmt" category. There are probably more
ports that belong here than the ones I have identified and moved in
this, first, pass.
Approved in principle by: marcus
Notes
Notes:
svn path=/head/; revision=101812
Diffstat (limited to 'net/net-snmp/files/patch-snmpTCPIPv6Domain.c')
-rw-r--r-- | net/net-snmp/files/patch-snmpTCPIPv6Domain.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/net/net-snmp/files/patch-snmpTCPIPv6Domain.c b/net/net-snmp/files/patch-snmpTCPIPv6Domain.c deleted file mode 100644 index 9a6e083a98bc..000000000000 --- a/net/net-snmp/files/patch-snmpTCPIPv6Domain.c +++ /dev/null @@ -1,30 +0,0 @@ ---- snmplib/snmpTCPIPv6Domain.c.orig Fri Aug 9 22:57:43 2002 -+++ snmplib/snmpTCPIPv6Domain.c Sun Oct 6 01:07:12 2002 -@@ -62,13 +62,21 @@ - if (to == NULL) { - return strdup("TCP/IPv6: unknown"); - } else { -- char addr[INET6_ADDRSTRLEN]; -- char tmp[INET6_ADDRSTRLEN + 8]; -+ char tmp[NI_MAXHOST]; - -- sprintf(tmp, "[%s]:%hd", -- inet_ntop(AF_INET6, (void *) &(to->sin6_addr), addr, -- INET6_ADDRSTRLEN), ntohs(to->sin6_port)); -- return strdup(tmp); -+/* -+ * NI_WITHSCOPEID will be obsoleted. But some implementations require -+ * this flag to retrieve scoped name. -+ * (2002-07-25: kuriyama@FreeBSD.org) -+ */ -+#ifndef NI_WITHSCOPEID -+#define NI_WITHSCOPEID 0 -+#endif -+ if (getnameinfo(to, sizeof(struct sockaddr_in6), tmp, sizeof(tmp), -+ NULL, 0, NI_NUMERICHOST | NI_WITHSCOPEID)) { -+ return strdup("UDP/IPv6: unknown"); -+ } -+ return strdup(tmp); - } - } - |