From 338c021272dd4082eb7f40ecbd350a6e0eee7b62 Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Thu, 1 Jul 2010 09:05:25 -0700 Subject: [PATCH] Fix refression in handling of mss= --- Shorewall/Perl/Shorewall/Chains.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shorewall/Perl/Shorewall/Chains.pm b/Shorewall/Perl/Shorewall/Chains.pm index c123589a7..fad6a26a3 100644 --- a/Shorewall/Perl/Shorewall/Chains.pm +++ b/Shorewall/Perl/Shorewall/Chains.pm @@ -1855,10 +1855,10 @@ sub set_mss( $$$ ) { } # -# Interate over non-firewall zones and interfaces with 'mss=' setting adding TCPMSS rules as appropriate. +# Interate over all zones with 'mss=' settings adding TCPMSS rules as appropriate. # sub setup_zone_mss() { - for my $zone ( non_firewall_zones ) { + for my $zone ( all_zones ) { my $zoneref = find_zone( $zone ); set_mss( $zone, $zoneref->{options}{in_out}{mss}, '' ) if $zoneref->{options}{in_out}{mss};