From 9b0b9a9ec5e904e528f31020320b314f9971fda4 Mon Sep 17 00:00:00 2001 From: teastep Date: Sun, 22 Apr 2007 23:21:34 +0000 Subject: [PATCH] Fix typo in maclist git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6074 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 e8efc583c..42b03e7e0 100644 --- a/Shorewall-perl/Shorewall/Rules.pm +++ b/Shorewall-perl/Shorewall/Rules.pm @@ -733,7 +733,7 @@ sub setup_mac_lists( $ ) { my $target = mac_chain $interface; if ( $table eq 'filter' ) { for my $chain ( @{first_chains $interface}) { - add_rule $filter_table->{$chain} , "${source}-m state --statue NEW ${policy}-j $target"; + add_rule $filter_table->{$chain} , "${source}-m state --state NEW ${policy}-j $target"; } } else { add_rule $mangle_table->{PREROUTING}, "-i $interface ${source}-m state --state NEW ${policy}-j $target";