From dffd98dff769f956820ef497536201ed81dbc7b3 Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Tue, 21 Aug 2012 10:51:01 -0700 Subject: [PATCH] Revert change that added CONTINUE as a valid content of the ADDRESSES column Signed-off-by: Tom Eastep --- Shorewall/Perl/Shorewall/Nat.pm | 2 -- 1 file changed, 2 deletions(-) diff --git a/Shorewall/Perl/Shorewall/Nat.pm b/Shorewall/Perl/Shorewall/Nat.pm index 51ffdaadd..1a23a28c0 100644 --- a/Shorewall/Perl/Shorewall/Nat.pm +++ b/Shorewall/Perl/Shorewall/Nat.pm @@ -177,8 +177,6 @@ sub process_one_masq( ) if ( $addresses =~ /^SAME/ ) { fatal_error "The SAME target is no longer supported"; - } elsif ( $addresses eq 'CONTINUE' ) { - $target = 'ACCEPT'; } elsif ( $addresses eq 'detect' ) { my $variable = get_interface_address $interface; $target = "SNAT --to-source $variable";