Correctly handle expansion of option names

Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
Tom Eastep 2017-03-13 10:20:15 -07:00
parent da363880a9
commit 0b8945da8e
No known key found for this signature in database
GPG Key ID: 96E6B3F2423A4D10

View File

@ -3689,6 +3689,7 @@ sub expand_variables( \$ ) {
$usedcaller = USEDCALLER if $var eq 'caller';
} else {
fatal_error "Undefined shell variable (\$$var)" unless $config{IGNOREUNKNOWNVARIABLES} || exists $config{$var};
$val = $config{$var};
}
$val = '' unless defined $val;