From a81b0ed6b03a48177e6096977231df046e994c9a Mon Sep 17 00:00:00 2001 From: Heuzef Date: Wed, 25 Sep 2019 15:41:41 +0200 Subject: [PATCH] Change check for size consistency for OR --- backuppc_check.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backuppc_check.pl b/backuppc_check.pl index 5ee8eef..08135d4 100644 --- a/backuppc_check.pl +++ b/backuppc_check.pl @@ -85,7 +85,7 @@ print("Size Consistency : "); # TOO BIG ? my $toobig = "1"; -if ( $json->{new_size} > ($json->{new_size_q3} + $json->{new_size_q3} - $json->{new_size_q1}) * 1.5 && $json->{new_size} > $json->{new_size_avg} * 6 ) { +if ( $json->{new_size} > ($json->{new_size_q3} + $json->{new_size_q3} - $json->{new_size_q1}) * 1.5 or $json->{new_size} > $json->{new_size_avg} * 6 ) { $toobig = "1"; } else { @@ -94,7 +94,7 @@ else { # TOO SMALL ? my $toosmall = "1"; -if ( $json->{new_size} < ($json->{new_size_q1} - $json->{new_size_q3} - $json->{new_size_q1}) * 1.5 && $json->{new_size} < $json->{new_size_avg} / 3 ) { +if ( $json->{new_size} < ($json->{new_size_q1} - $json->{new_size_q3} - $json->{new_size_q1}) * 1.5 or $json->{new_size} < $json->{new_size_avg} / 3 ) { $toosmall = "1"; } else {