+ fix typo threshold

This commit is contained in:
Sims24 2016-05-23 14:40:11 +02:00
parent 10dc64b721
commit d40c08c8cb
1 changed files with 2 additions and 2 deletions

View File

@ -73,12 +73,12 @@ sub check_options {
$self->{overload_th} = []; $self->{overload_th} = [];
foreach my $val (@{$self->{option_results}->{threshold_overload}}) { foreach my $val (@{$self->{option_results}->{threshold_overload}}) {
if ($val !~ /^(.*?),(.*)$/) { if ($val !~ /^(.*?),(.*)$/) {
$self->{output}->add_option_msg(short_msg => "Wrong treshold-overload option '" . $val . "'."); $self->{output}->add_option_msg(short_msg => "Wrong threshold-overload option '" . $val . "'.");
$self->{output}->option_exit(); $self->{output}->option_exit();
} }
my ($status, $filter) = ($1, $2); my ($status, $filter) = ($1, $2);
if ($self->{output}->is_litteral_status(status => $status) == 0) { if ($self->{output}->is_litteral_status(status => $status) == 0) {
$self->{output}->add_option_msg(short_msg => "Wrong treshold-overload status '" . $val . "'."); $self->{output}->add_option_msg(short_msg => "Wrong threshold-overload status '" . $val . "'.");
$self->{output}->option_exit(); $self->{output}->option_exit();
} }
push @{$self->{overload_th}}, {filter => $filter, status => $status}; push @{$self->{overload_th}}, {filter => $filter, status => $status};