summaryrefslogtreecommitdiff
path: root/package/heimdal/src/cf
diff options
context:
space:
mode:
Diffstat (limited to 'package/heimdal/src/cf')
-rw-r--r--package/heimdal/src/cf/roken-h-process.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/package/heimdal/src/cf/roken-h-process.pl b/package/heimdal/src/cf/roken-h-process.pl
index a54c9216d..aa371a364 100644
--- a/package/heimdal/src/cf/roken-h-process.pl
+++ b/package/heimdal/src/cf/roken-h-process.pl
@@ -145,6 +145,9 @@ sub parse_if
if (m/^\s*$/) {
print "end $_\n" if ($debug);
return 1;
+ } elsif (m/^\(([^&]+)\&\&(.*)$/) {
+ print "$1 and $2\n" if ($debug);
+ return parse_if($1) and parse_if($2);
} elsif (m/^([^&]+)\&\&(.*)$/) {
print "$1 and $2\n" if ($debug);
return parse_if($1) and parse_if($2);