mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-22 15:43:30 +01:00
Correct parsing of the POLICY column
Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
parent
3b82721956
commit
b9471a2499
@ -571,7 +571,7 @@ sub process_default_actions( $$$ ) {
|
||||
if ( supplied $defaults ) {
|
||||
if ( $defaults ne 'none' ) {
|
||||
for my $default ( split_list3( $defaults, 'Default Action' ) ) {
|
||||
my ( $action, $level, undef, $remainder ) = split( /:/, $default, ACTION_TUPLE_ELEMENTS - 1);
|
||||
my ( $action, $level, $remainder ) = split( /:/, $default );
|
||||
|
||||
fatal_error "Invalid default action ($default:$level:$remainder)" if defined $remainder;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user