Fix CONTINUE policy bug

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@5527 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep 2007-03-14 19:59:53 +00:00
parent d55b32478f
commit 299d15d992

View File

@ -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() {