summaryrefslogtreecommitdiffstats
path: root/plugins-scripts/check_ifoperstatus.pl
diff options
context:
space:
mode:
authorGavin Carr <gonzai@users.sourceforge.net>2007-03-16 12:11:46 (GMT)
committerGavin Carr <gonzai@users.sourceforge.net>2007-03-16 12:11:46 (GMT)
commit8d0e8a652f3c729b1c07c821695188af395f6c24 (patch)
tree8bd3670f6868e3ab90ae2c0657d2215fce64f48d /plugins-scripts/check_ifoperstatus.pl
parent76cc1b75dd2e9a0f2e9c4a047429cb1acd733272 (diff)
downloadmonitoring-plugins-8d0e8a652f3c729b1c07c821695188af395f6c24.tar.gz
Fix bogus 'eq ( || )' constructions in check_ifoperstatus.pl.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1642 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins-scripts/check_ifoperstatus.pl')
-rw-r--r--plugins-scripts/check_ifoperstatus.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins-scripts/check_ifoperstatus.pl b/plugins-scripts/check_ifoperstatus.pl
index 59356bd..62891ff 100644
--- a/plugins-scripts/check_ifoperstatus.pl
+++ b/plugins-scripts/check_ifoperstatus.pl
@@ -384,15 +384,15 @@ sub process_arguments() {
384 if (defined $seclevel && defined $secname) { 384 if (defined $seclevel && defined $secname) {
385 385
386 # Must define a security level even though defualt is noAuthNoPriv 386 # Must define a security level even though defualt is noAuthNoPriv
387 unless ($seclevel eq ('noAuthNoPriv' || 'authNoPriv' || 'authPriv' ) ) { 387 unless ( grep /^$seclevel$/, qw(noAuthNoPriv authNoPriv authPriv) ) {
388 usage(); 388 usage();
389 exit $ERRORS{"UNKNOWN"}; 389 exit $ERRORS{"UNKNOWN"};
390 } 390 }
391 391
392 # Authentication wanted 392 # Authentication wanted
393 if ($seclevel eq ('authNoPriv' || 'authPriv') ) { 393 if ( $seclevel eq 'authNoPriv' || $seclevel eq 'authPriv' ) {
394 394
395 unless ($authproto eq ('MD5' || 'SHA1') ) { 395 unless ( $authproto eq 'MD5' || $authproto eq 'SHA1' ) {
396 usage(); 396 usage();
397 exit $ERRORS{"UNKNOWN"}; 397 exit $ERRORS{"UNKNOWN"};
398 } 398 }