Use eq insteed of ==

master
Heuzef 5 years ago
parent 68305199ba
commit 7ee4206992
  1. 2
      backuppc_check.pl

@ -112,7 +112,7 @@ print("\ntoobig : $toobig\n");
print("\ntoosmall : $toosmall\n"); print("\ntoosmall : $toosmall\n");
# Print result # Print result
if ( $toobig == "false" && $toosmall == "false" ) { if ( $toobig eq "false" && $toosmall eq "false" ) {
print("Normal"); print("Normal");
} }
else { else {

Loading…
Cancel
Save