From 3df488e7107132c761c96a126db7abb17ff0148d Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Sun, 23 Oct 2016 16:28:36 -0700 Subject: [PATCH] Correct handling of ipsets in tcfilters Signed-off-by: Tom Eastep --- Shorewall/Perl/Shorewall/Tc.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shorewall/Perl/Shorewall/Tc.pm b/Shorewall/Perl/Shorewall/Tc.pm index 28ae16955..558ec739a 100644 --- a/Shorewall/Perl/Shorewall/Tc.pm +++ b/Shorewall/Perl/Shorewall/Tc.pm @@ -1518,7 +1518,7 @@ sub process_tc_filter2( $$$$$$$$$ ) { $rule .= ' and' if $have_rule; if ( $source =~ /^\+/ ) { - $rule = join( '', "\\\n ", handle_ematch( $source, 'src' ) ); + $rule .= join( '', "\\\n ", handle_ematch( $source, 'src' ) ); } else { my @parts = decompose_net_u32( $source );