From 2eb25f3f6af08b49b0ed877a97e77933f18f1416 Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Wed, 16 May 2012 07:52:42 -0700 Subject: [PATCH] Correct the grammar in an error message Signed-off-by: Tom Eastep --- Shorewall/Perl/Shorewall/Chains.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shorewall/Perl/Shorewall/Chains.pm b/Shorewall/Perl/Shorewall/Chains.pm index d50bf6c68..da730737f 100644 --- a/Shorewall/Perl/Shorewall/Chains.pm +++ b/Shorewall/Perl/Shorewall/Chains.pm @@ -4649,7 +4649,7 @@ sub match_source_net( $;$\$ ) { my $result = ''; my @sets = mysplit $1, 1; - fatal_error "Multiple ipset matches requires the Repeat Match capability in your kernel and iptables" unless $globals{KLUDGEFREE}; + fatal_error "Multiple ipset matches require the Repeat Match capability in your kernel and iptables" unless $globals{KLUDGEFREE}; for $net ( @sets ) { fatal_error "Expected ipset name ($net)" unless $net =~ /^(!?)(\+?)[a-zA-Z][-\w]*(\[.*\])?/;