diff options
author | thorpej <thorpej@pkgsrc.org> | 2004-07-10 17:59:17 +0000 |
---|---|---|
committer | thorpej <thorpej@pkgsrc.org> | 2004-07-10 17:59:17 +0000 |
commit | 5325c7699c224add34b87a147abb6117bb6a9d7b (patch) | |
tree | 01ad240d5a669720d988e2c28c25dcf8346c7d38 /net/net-snmp/patches | |
parent | 774a1153f251e5f6cc3ebab06d471bdd61f65ac7 (diff) | |
download | pkgsrc-5325c7699c224add34b87a147abb6117bb6a9d7b.tar.gz |
In snmp_vars.h, use in_addr_t rather than uint32_t for ipaddr_return; the
former is provided by system or private header files, and the latter may
not be.
Diffstat (limited to 'net/net-snmp/patches')
-rw-r--r-- | net/net-snmp/patches/patch-aj | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/net/net-snmp/patches/patch-aj b/net/net-snmp/patches/patch-aj new file mode 100644 index 00000000000..b20cc984aed --- /dev/null +++ b/net/net-snmp/patches/patch-aj @@ -0,0 +1,13 @@ +$NetBSD: patch-aj,v 1.1 2004/07/10 17:59:17 thorpej Exp $ + +--- include/net-snmp/agent/snmp_vars.h.orig Thu Jul 8 18:17:53 2004 ++++ include/net-snmp/agent/snmp_vars.h Thu Jul 8 18:18:02 2004 +@@ -74,7 +74,7 @@ + struct nlist; + + extern long long_return; +- extern uint32_t ipaddr_return; ++ extern in_addr_t ipaddr_return; + extern u_char return_buf[]; + + extern oid nullOid[]; |