commit net-snmp for openSUSE:Factory
Hello community, here is the log from the commit of package net-snmp for openSUSE:Factory checked in at Thu Sep 29 12:53:04 CEST 2011. -------- --- openSUSE:Factory/net-snmp/net-snmp.changes 2011-09-23 02:14:22.000000000 +0200 +++ /mounts/work_src_done/STABLE/net-snmp/net-snmp.changes 2011-09-29 02:53:08.000000000 +0200 @@ -1,0 +2,16 @@ +Thu Sep 29 00:44:40 UTC 2011 - lchiquitto@suse.com + +- update to version 5.7.1: minor release including some bug fixes + +------------------------------------------------------------------- +Fri Sep 16 17:24:39 UTC 2011 - jengelh@medozas.de + +- enable net-snmp-devel on all baselib architectures + +------------------------------------------------------------------- +Wed Sep 14 18:33:18 UTC 2011 - lchiquitto@suse.com + +- make sure all delegated requests are removed before closing an + AgentX session (bnc#670789) + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- net-snmp-5.7.1.rc1.tar.bz2 New: ---- net-snmp-5.7.1-agentx-crash.patch net-snmp-5.7.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ net-snmp.spec ++++++ --- /var/tmp/diff_new_pack.hXPNDu/_old 2011-09-29 12:52:57.000000000 +0200 +++ /var/tmp/diff_new_pack.hXPNDu/_new 2011-09-29 12:52:57.000000000 +0200 @@ -45,7 +45,7 @@ %endif # Url: http://sourceforge.net/projects/net-snmp -Source: %{pkg_name}-%{version}.rc1.tar.bz2 +Source: %{pkg_name}-%{version}.tar.bz2 Source1: rc.snmpd Source2: snmpd.conf Source3: README.SUSE @@ -62,6 +62,7 @@ Patch6: net-snmp-5.5.0-perl-tk-warning.patch Patch7: net-snmp-5.7.0-velocity-mib.patch Patch8: net-snmp-5.7.0-recognize-reiserfs.patch +Patch9: net-snmp-5.7.1-agentx-crash.patch # Summary: SNMP Daemon @@ -195,7 +196,7 @@ G.S. Marzot <gmarzot@nortelnetworks.com> %prep -%setup -q -n %{pkg_name}-%{version}.rc1 +%setup -q -n %{pkg_name}-%{version} %patch1 -p1 %patch2 -p1 %patch3 -p1 @@ -203,6 +204,7 @@ %patch6 -p1 %patch7 -p1 %patch8 -p1 +%patch9 -p1 %build MIBS="misc/ipfwacc ucd-snmp/diskio etherlike-mib rmon-mib velocity smux \ ++++++ baselibs.conf ++++++ --- /var/tmp/diff_new_pack.hXPNDu/_old 2011-09-29 12:52:57.000000000 +0200 +++ /var/tmp/diff_new_pack.hXPNDu/_new 2011-09-29 12:52:57.000000000 +0200 @@ -1,4 +1,4 @@ libsnmp30 -arch ppc package net-snmp-devel +net-snmp-devel requires -net-snmp-<targettype> requires "libsnmp30-<targettype> = <version>" ++++++ net-snmp-5.7.1-agentx-crash.patch ++++++ Index: net-snmp-5.7.1.rc1/agent/mibgroup/agentx/master_admin.c =================================================================== --- net-snmp-5.7.1.rc1.orig/agent/mibgroup/agentx/master_admin.c +++ net-snmp-5.7.1.rc1/agent/mibgroup/agentx/master_admin.c @@ -135,11 +135,16 @@ close_agentx_session(netsnmp_session * s * requests, so that the delegated request will be completed and * further requests can be processed */ - netsnmp_remove_delegated_requests_for_session(session); + while (netsnmp_remove_delegated_requests_for_session(session)) { + DEBUGMSGTL(("agentx/master", "Continue removing delegated requests\n")); + } + if (session->subsession != NULL) { netsnmp_session *subsession = session->subsession; for(; subsession; subsession = subsession->next) { - netsnmp_remove_delegated_requests_for_session(subsession); + while (netsnmp_remove_delegated_requests_for_session(subsession)) { + DEBUGMSGTL(("agentx/master", "Continue removing delegated subsession requests\n")); + } } } ++++++ net-snmp-5.7.1.rc1.tar.bz2 -> net-snmp-5.7.1.tar.bz2 ++++++ ++++ 8489 lines of diff (skipped) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de