if syntax errors

master
bbruns 2010-09-27 20:31:20 +00:00
parent f109a3ebc7
commit 2c331ce024
1 changed files with 2 additions and 2 deletions

View File

@ -266,7 +266,7 @@ if [ "$TCPPORTS" ] || [ "$UDPPORTS" ]; then
TCPPORTS=($TCPPORTS)
PORTS_COUNT=${#TCPPORTS[@]}
PORTS_COUNT_CURR=0
while [[ $PORTS_COUNT_CURR < $PORTS_COUNT ]]; do
while (( "$PORTS_COUNT_CURR" < "$PORTS_COUNT" )); do
for ((i=$PORTS_COUNT_CURR; i <=(($PORTS_COUNT_CURR+(($NF_MULTIPORT_MAX_PORTS-1)))); i++)); do
if [ ${TCPPORTS[$i]} ]; then
PORTS="${PORTS},${TCPPORTS[$i]}"
@ -569,7 +569,7 @@ if [ $IPV6 ]; then
IPV6TCP=($IPV6TCP)
PORTS_COUNT=${#IPV6TCP[@]}
PORTS_COUNT_CURR=0
while [[ $PORTS_COUNT_CURR < $PORTS_COUNT ]]; do
while (( "$PORTS_COUNT_CURR" < "$PORTS_COUNT" )); do
for ((i=$PORTS_COUNT_CURR; i <=(($PORTS_COUNT_CURR+(($NF_MULTIPORT_MAX_PORTS-1)))); i++)); do
if [ ${IPV6TCP[$i]} ]; then
PORTS="${PORTS},${IPV6TCP[$i]}"