From: Gavin Carr Date: Fri, 16 Mar 2007 12:11:46 +0000 (+0000) Subject: Fix bogus 'eq ( || )' constructions in check_ifoperstatus.pl. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;ds=sidebyside;h=8d0e8a652f3c729b1c07c821695188af395f6c24;p=nagiosplug.git 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 --- 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() { if (defined $seclevel && defined $secname) { # Must define a security level even though defualt is noAuthNoPriv - unless ($seclevel eq ('noAuthNoPriv' || 'authNoPriv' || 'authPriv' ) ) { + unless ( grep /^$seclevel$/, qw(noAuthNoPriv authNoPriv authPriv) ) { usage(); exit $ERRORS{"UNKNOWN"}; } # Authentication wanted - if ($seclevel eq ('authNoPriv' || 'authPriv') ) { + if ( $seclevel eq 'authNoPriv' || $seclevel eq 'authPriv' ) { - unless ($authproto eq ('MD5' || 'SHA1') ) { + unless ( $authproto eq 'MD5' || $authproto eq 'SHA1' ) { usage(); exit $ERRORS{"UNKNOWN"}; }