mirror of
https://gitlab.com/shorewall/code.git
synced 2025-08-17 20:26:47 +02:00
Don't use '-g' when DISPOSITION is CONTINUE.
Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
@ -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{$_};
|
||||||
|
Reference in New Issue
Block a user