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:
teastep 2008-04-10 23:29:19 +00:00
parent 8463d54580
commit 5d459daa75

View File

@ -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;
}
#