Use true given window range, not twice

This commit is contained in:
CPbN 2019-03-21 13:11:22 +01:00
parent 85aa580991
commit 02063aa961
1 changed files with 2 additions and 2 deletions

View File

@ -80,8 +80,8 @@ sub check_overload {
my $overflow = ($old_uptime + $diff_time) % 4294967296;
my $division = ($old_uptime + $diff_time) / 4294967296;
if ($division >= 1 &&
$overflow >= ($options{timeticks} - $self->{option_results}->{reboot_window}) &&
$overflow <= ($options{timeticks} + $self->{option_results}->{reboot_window})) {
$overflow >= ($options{timeticks} - ($self->{option_results}->{reboot_window} / 2)) &&
$overflow <= ($options{timeticks} + ($self->{option_results}->{reboot_window} / 2))) {
$self->{new_datas}->{overload}++;
} else {
$self->{new_datas}->{overload} = 0;