Fix another syntax error

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@5794 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep 2007-04-01 17:50:51 +00:00
parent 930c3384ab
commit e69390370d

View File

@ -1838,12 +1838,10 @@ do_initialize() {
[ -e "$IPTABLES" ] || startup_error "\$IPTABLES=$IPTABLES does not exist or is not executable"
fi
if $PROGRAM != compiler || $SHOREWALL_COMPILER = shell ; then
f=$(find_file capabilities)
f=$(find_file capabilities)
[ -f $f ] && . $f || determine_capabilities
fi
elif $PROGRAM != compiler || $SHOREWALL_COMPILER = shell ; then
[ -f $f ] && . $f || determine_capabilities
elif [ $PROGRAM != compiler -o $SHOREWALL_COMPILER = shell ] ; then
f=$(find_file capabilities)
[ -f $f ] && . $f || startup_error "The -e flag requires a capabilities file"
fi