Temporarily disable fix for exported variables

Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
Tom Eastep 2020-03-31 16:43:30 -07:00
parent f9003fab43
commit 137cc48779
No known key found for this signature in database
GPG Key ID: 96E6B3F2423A4D10

View File

@ -6012,9 +6012,7 @@ sub export_params() {
# Don't export pairs from %ENV
#
if ( defined $ENV{$param} ) {
unless ( $export || $test ) {
next if $value eq $ENV{$param};
}
next if $value eq $ENV{$param};
} elsif ( exists $ENV{$param} ) {
next unless supplied $value;
}