From 2c331ce024e052e2494e67ca41d2062d8fc8fedc Mon Sep 17 00:00:00 2001 From: bbruns Date: Mon, 27 Sep 2010 20:31:20 +0000 Subject: [PATCH] if syntax errors --- bin/firewall-sosdg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/firewall-sosdg b/bin/firewall-sosdg index b10e5bc..70fcefe 100755 --- a/bin/firewall-sosdg +++ b/bin/firewall-sosdg @@ -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]}"