mirror of
https://gitlab.com/shorewall/code.git
synced 2025-01-16 18:48:35 +01:00
Avoid undefined var error
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@8416 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
8463d54580
commit
5d459daa75
@ -513,7 +513,7 @@ sub add_jump( $$;$ ) {
|
||||
#
|
||||
# Ensure that we have the chain unless it is a builtin like 'ACCEPT'
|
||||
#
|
||||
$toref = ensure_chain( $fromref->{table} , $to ) unless ($targets{$to} | 0 ) & STANDARD;
|
||||
$toref = ensure_chain( $fromref->{table} , $to ) unless ( $targets{$to} || 0 ) & STANDARD;
|
||||
}
|
||||
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user