Skip to content
Snippets Groups Projects
Commit b2daabb5 authored by Nigel Kukard's avatar Nigel Kukard
Browse files

Fix treatment of != , its defined AND != , not defined OR !=

parent 0e11b7c9
No related branches found
No related tags found
No related merge requests found
...@@ -256,7 +256,7 @@ sub checkAuthAttribute ...@@ -256,7 +256,7 @@ sub checkAuthAttribute
} elsif ($attribute->{'Operator'} eq '!=') { } elsif ($attribute->{'Operator'} eq '!=') {
# Check for correct value # Check for correct value
if (defined($attrVal) && $attrVal ne $tattrVal) { if (!defined($attrVal) || $attrVal ne $tattrVal) {
$matched = 1; $matched = 1;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment