netsnmp: bump to 5.7.1 LTS

Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Luca Ceresoli 2011-12-06 17:50:11 +01:00 committed by Peter Korsgaard
parent 0c8407a9bc
commit 8a28f7e8ac
2 changed files with 18 additions and 1 deletions

View File

@ -0,0 +1,17 @@
Fixes runtime error with uClibc (and possibly others).
Original patch and bug description:
http://sourceforge.net/tracker/?func=detail&aid=3436528&group_id=12694&atid=312694
--- net-snmp-5.7.1/agent/mibgroup/host/data_access/swinst_pkginfo.c
+++ /home/fabled//net-snmp-5.7.1.patched/agent/mibgroup/host/data_access/swinst_pkginfo.c
@@ -140,7 +140,8 @@
memcpy( entry->swDate, cp, date_len );
entry->swDate_len = date_len;
}
- closedir( d );
+ if (d != NULL)
+ closedir( d );
DEBUGMSGTL(("swinst:load:arch"," loaded %d entries\n",
(int)CONTAINER_SIZE(container)));

View File

@ -4,7 +4,7 @@
#
#############################################################
NETSNMP_VERSION = 5.6.1.1
NETSNMP_VERSION = 5.7.1
NETSNMP_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/net-snmp
NETSNMP_SOURCE = net-snmp-$(NETSNMP_VERSION).tar.gz
NETSNMP_INSTALL_STAGING = YES