Correct source interface exclusion

Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
Tom Eastep 2018-07-04 08:01:27 -07:00
parent 6fef1f34ba
commit 474604b1fe
No known key found for this signature in database
GPG Key ID: 96E6B3F2423A4D10

View File

@ -5895,7 +5895,7 @@ sub do_nfacct( $ ) {
#
sub match_source_dev( $;$ ) {
my ( $interface, $nodev ) = @_;
my $invert = ( $interface =~ s/^!// ) ? '!' : '';
my $invert = ( $interface =~ s/^!// ) ? '! ' : '';
my $interfaceref = known_interface( $interface );
$interface = $interfaceref->{physical} if $interfaceref;