freebsd-ports/net-mgmt/net-snmp53/files/patch-snmpusm.c
Jun Kuriyama a7f5634511 - Update to 5.2.1.
- Add a patch to fix memory leak (SF bugs #1103644).
- Add WITH_DMALLOC knob (with a lot of patches to fix #include order).
2005-01-25 23:49:30 +00:00

21 lines
635 B
C

--- snmplib/snmpusm.c.orig Thu Sep 16 07:57:47 2004
+++ snmplib/snmpusm.c Tue Jan 25 10:23:02 2005
@@ -54,6 +54,9 @@
#include <netinet/in.h>
#endif
+#if HAVE_UNISTD_H
+#include <unistd.h>
+#endif
#if HAVE_DMALLOC_H
#include <dmalloc.h>
#endif
@@ -89,6 +92,8 @@
oid usmAESPrivProtocol[10] = { 1, 3, 6, 1, 6, 3, 10, 1, 2, 4 };
/* backwards compat */
oid *usmAES128PrivProtocol = usmAESPrivProtocol;
+oid *usmAES192PrivProtocol = usmAESPrivProtocol;
+oid *usmAES256PrivProtocol = usmAESPrivProtocol;
static u_int dummy_etime, dummy_eboot; /* For ISENGINEKNOWN(). */