summaryrefslogtreecommitdiff
path: root/package/heimdal/src/cf
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-04-26 09:52:58 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-04-26 09:55:59 +0200
commitcd298d7886ee71772a93babf2f1d489a9aaf3ecd (patch)
treed1c25a66150ffa2e345d12bb70d12090cbf03729 /package/heimdal/src/cf
parent7c618090e705f960334a98d31194dee673686801 (diff)
update to latest upstream
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);