From f979af0735751bd28003f19a8949b61dfc85efa5 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Wed, 27 Feb 2019 13:56:06 +0100 Subject: [PATCH] minor fixes Former-commit-id: 51a2308e80a85c5a099410c5883c9b389d3a74ab --- pandora_server/lib/PandoraFMS/Recon/Base.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_server/lib/PandoraFMS/Recon/Base.pm b/pandora_server/lib/PandoraFMS/Recon/Base.pm index ec3eb0d853..45f5d87a27 100644 --- a/pandora_server/lib/PandoraFMS/Recon/Base.pm +++ b/pandora_server/lib/PandoraFMS/Recon/Base.pm @@ -216,7 +216,7 @@ sub new { $self->{'snmp_security_level'} = ''; # Disable SNMP scans if no community was given. - if (scalar(@{$self->{'communities'}}) == 0) { + if (ref($self->{'communities'}) ne "ARRAY" || scalar(@{$self->{'communities'}}) == 0) { $self->{'snmp_enabled'} = 0; $self->call('message', "There is not any SNMP community configured.", 5);