From 21a71d7b6429f01c5961dffd8e9d4435cf89f645 Mon Sep 17 00:00:00 2001 From: teastep Date: Fri, 4 May 2007 22:31:48 +0000 Subject: [PATCH] Fix 'other' tunnel types git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6241 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- Shorewall-perl/Shorewall/Tunnels.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shorewall-perl/Shorewall/Tunnels.pm b/Shorewall-perl/Shorewall/Tunnels.pm index 7317b0837..1b1b00b66 100644 --- a/Shorewall-perl/Shorewall/Tunnels.pm +++ b/Shorewall-perl/Shorewall/Tunnels.pm @@ -97,7 +97,7 @@ sub setup_tunnels() { } sub setup_one_other { - my ($inchainref, $outchainref, $kind, $source, $dest , $protocol) = @_; + my ($inchainref, $outchainref, $source, $dest , $protocol) = @_; add_rule $inchainref , "-p $protocol $source -j ACCEPT"; add_rule $outchainref , "-p $protocol $dest -j ACCEPT";