|
From: Patrick W. <ne...@wi...> - 2003-08-14 01:58:13
|
Looks like the parsing for generic tunnels ( with protocol and port) in
usr/share/shorewall/firewall in the 1.4.6_20030813 is not correct.
The patch below fixes it for me.
Patrick
--- usr/share/shorewall/firewall.orig 2003-08-13 16:00:32.000000000 -0700
+++ usr/share/shorewall/firewall 2003-08-13 18:39:22.000000000 -0700
@@ -1209,8 +1209,8 @@
case $2 in
*:*:*)
p=${2##*:}
- protocol=${2%:*}
- protocol=${2#*:}
+ pp=${2%:*}
+ protocol=${pp#*:}
;;
*:*)
protocol=${2#*:}
|