mirror of
https://github.com/centreon/centreon-plugins.git
synced 2025-07-24 14:15:29 +02:00
remove bug with @ in check_centreon_traffic
git-svn-id: http://svn.centreon.com/trunk/plugins-2.x@6169 6bcd3966-0018-0410-8128-fd23d134de7e
This commit is contained in:
parent
64361011b6
commit
aba0f225b3
@ -203,6 +203,7 @@ if ($opt_n) {
|
||||
exit $ERRORS{'UNKNOWN'};
|
||||
}
|
||||
foreach my $key ( oid_lex_sort(keys %$result)) {
|
||||
$result->{$key} =~ s/\x00//g; //Added line to strip the illegal character off.
|
||||
if ($result->{$key} =~ m/$opt_i/) {
|
||||
my @oid_list = split (/\./,$key);
|
||||
$interface = pop (@oid_list) ;
|
||||
@ -216,6 +217,7 @@ if ($opt_n) {
|
||||
exit $ERRORS{'UNKNOWN'};
|
||||
}
|
||||
foreach my $key ( oid_lex_sort(keys %$result)) {
|
||||
$result->{$key} =~ s/\x00//g; //Added line to strip the illegal character off.
|
||||
if ($result->{$key} eq $opt_i) {
|
||||
my @oid_list = split (/\./,$key);
|
||||
$interface = pop (@oid_list) ;
|
||||
|
Loading…
x
Reference in New Issue
Block a user