Correct syntax error caused by replacing '%%' with '??'

Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
Tom Eastep 2014-08-03 15:29:58 -07:00
parent a2f1c57246
commit 0ca12bd86f

View File

@ -3273,7 +3273,7 @@ sub expand_variables( \$ ) {
fatal_error "Variable Expansion Loop" if ++$count > 100;
}
$$lineref =~ s/??/@/g;
$$lineref =~ s/\?\?/@/g;
}
}