mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-15 04:04:10 +01:00
Small optimizations in expand_rule()
Signed-off-by: Tom Eastep <teastep@shorewall.net> git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@9837 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
ff014f328b
commit
e0040f4011
@ -2341,7 +2341,7 @@ sub expand_rule( $$$$$$$$$$ )
|
||||
#
|
||||
# Trim disposition
|
||||
#
|
||||
$disposition =~ s/\s+.*//;
|
||||
$disposition =~ s/\s.*//;
|
||||
#
|
||||
# Handle Log Level
|
||||
#
|
||||
@ -2415,9 +2415,7 @@ sub expand_rule( $$$$$$$$$$ )
|
||||
#
|
||||
fatal_error "Bridge ports may not appear in the SOURCE column of this file" if port_to_bridge( $iiface );
|
||||
|
||||
my $networks = get_interface_nets ( $iiface );
|
||||
|
||||
push_command $chainref, join( '', 'for source in ', $networks, '; do' ), 'done';
|
||||
push_command $chainref, join( '', 'for source in ', get_interface_nets( $iiface) , '; do' ), 'done';
|
||||
|
||||
$rule .= '-s $source ';
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user