From 299d15d992cb44e9f7d688450f1386bb210ea137 Mon Sep 17 00:00:00 2001 From: teastep Date: Wed, 14 Mar 2007 19:59:53 +0000 Subject: [PATCH] Fix CONTINUE policy bug git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@5527 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- New/compiler.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/New/compiler.pl b/New/compiler.pl index 6d9cfcb61..0c8adc5c7 100755 --- a/New/compiler.pl +++ b/New/compiler.pl @@ -1802,7 +1802,7 @@ sub policy_rules( $$$$ ) { fatal_error "Null target in policy_rules()" unless $target; - add_rule $chainref , ( '-j ' . ( $target eq 'REJECT' ? 'reject' : $target ) ); + add_rule $chainref , ( '-j ' . ( $target eq 'REJECT' ? 'reject' : $target ) ) unless $target eq 'CONTINUE'; } sub report_syn_flood_protection() {