From dfed6bd16dd69a2e011111ddba62a6d6d920a317 Mon Sep 17 00:00:00 2001 From: teastep Date: Sun, 6 May 2007 23:32:02 +0000 Subject: [PATCH] Fix typo in generate_matrix() git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6260 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- Shorewall-perl/Shorewall/Rules.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shorewall-perl/Shorewall/Rules.pm b/Shorewall-perl/Shorewall/Rules.pm index 1995c83d7..c90ca2157 100644 --- a/Shorewall-perl/Shorewall/Rules.pm +++ b/Shorewall-perl/Shorewall/Rules.pm @@ -1429,7 +1429,7 @@ sub generate_matrix() { for my $net ( @{$hostref->{hosts}} ) { add_rule $filter_table->{forward_chain $interface} , - match_source_net join( '', $net, $ipsec_match, "-j $frwd_ref->n{name}" ); + match_source_net join( '', $net, $ipsec_match, "-j $frwd_ref->{name}" ); } } }