From a80ff213883bbdab6fc843789187f6eb25e84870 Mon Sep 17 00:00:00 2001 From: Julien Mathis Date: Mon, 3 Jan 2011 22:08:10 +0000 Subject: [PATCH] fix #2084 git-svn-id: http://svn.centreon.com/trunk/plugins-2.x@11424 6bcd3966-0018-0410-8128-fd23d134de7e --- centreon-plugins/src/check_centreon_snmp_packetErrors | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/centreon-plugins/src/check_centreon_snmp_packetErrors b/centreon-plugins/src/check_centreon_snmp_packetErrors index f96c4456d..8a2ac95dc 100644 --- a/centreon-plugins/src/check_centreon_snmp_packetErrors +++ b/centreon-plugins/src/check_centreon_snmp_packetErrors @@ -173,7 +173,7 @@ if (!defined($if_description)) { exit $ERRORS{'UNKNOWN'}; } foreach my $desc (oid_lex_sort(keys %$if_description)) { - $desc_tab[scalar(@desc_tab)] = $if_description->{$desc}; + $desc_tab[scalar(@desc_tab)] = $if_description->{$desc} if ($if_description->{$desc} !~ m/StackSub/i); }