forked from extern/shorewall_code
Don't use '-g' when DISPOSITION is CONTINUE.
Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
parent
615df6ab8f
commit
b22b63b1c3
@ -953,7 +953,11 @@ sub finish_chain_section ($$$) {
|
|||||||
|
|
||||||
$target = ensure_audit_chain( $target ) if ( $targets{$target} || 0 ) & AUDIT;
|
$target = ensure_audit_chain( $target ) if ( $targets{$target} || 0 ) & AUDIT;
|
||||||
|
|
||||||
add_ijump( $chainref, g => $target, state_imatch $_ );
|
if ( $statetable{$_}[2] ) {
|
||||||
|
add_ijump( $chainref, g => $target, state_imatch $_ );
|
||||||
|
} else {
|
||||||
|
add_ijump( $chainref, j => $target, state_imatch $_ );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
delete $state{$_};
|
delete $state{$_};
|
||||||
|
Loading…
Reference in New Issue
Block a user