forked from extern/shorewall_code
Cosmetic change
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6931 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
7d89a456b2
commit
b2e6f5aea2
@ -877,11 +877,11 @@ sub read_a_line() {
|
||||
#
|
||||
# Expand Shell Variables using %ENV
|
||||
#
|
||||
while ( $currentline =~ m( ^(.*?) #Part preceding '$'
|
||||
\$({)? #'$' and optional '{'
|
||||
([a-zA-Z]\w*) #Shell Variable Name
|
||||
(?(2)}) #Match closing '}'
|
||||
(.*)$)x #Rest of Line
|
||||
while ( $currentline =~ m( ^(.*?) # Part preceding '$'
|
||||
\$({)? # '$' and optional '{'
|
||||
([a-zA-Z]\w*) # Shell Variable Name
|
||||
(?(2)}) # Match opening '{'
|
||||
(.*)$)x # Rest of Line
|
||||
) {
|
||||
my $val = $ENV{$3};
|
||||
$val = '' unless defined $val;
|
||||
|
Loading…
Reference in New Issue
Block a user