From 5cc2fd33ef3c9b20fe9945bfc427e72160ee68f7 Mon Sep 17 00:00:00 2001 From: darode Date: Fri, 28 Oct 2011 12:45:31 +0000 Subject: [PATCH] 2011-10-28 Dario Rodriguez * util/recon_scripts/snmpdevices.pl: Fixed a bug related to main loop and broadcast address. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5098 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_server/ChangeLog | 5 +++++ pandora_server/util/recon_scripts/snmpdevices.pl | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_server/ChangeLog b/pandora_server/ChangeLog index 70ac9c2a8d..e8607c588d 100644 --- a/pandora_server/ChangeLog +++ b/pandora_server/ChangeLog @@ -1,3 +1,8 @@ +2011-10-28 Dario Rodriguez + + * util/recon_scripts/snmpdevices.pl: Fixed a bug related to main loop + and broadcast address. + 2011-10-28 Ramon Novoa * lib/PandoraFMS/DataServer.pm: Update the configuration of the diff --git a/pandora_server/util/recon_scripts/snmpdevices.pl b/pandora_server/util/recon_scripts/snmpdevices.pl index d1c87cf46d..c199433fd1 100755 --- a/pandora_server/util/recon_scripts/snmpdevices.pl +++ b/pandora_server/util/recon_scripts/snmpdevices.pl @@ -162,7 +162,7 @@ for (my $i = 1; $net_addr <= $net_addr->broadcast; $i++, $net_addr++) { } my $net_addr_temp = $net_addr + 1; - if($net_addr eq $net_addr_temp) { + if($net_addr->broadcast eq $net_addr_temp) { $last = 1; }