From 045d5ac048fa0f07cb55a6a27a752d5fde9a6545 Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Sun, 24 Aug 2014 08:34:04 -0700 Subject: [PATCH] Correct typo in error messages Signed-off-by: Tom Eastep --- Shorewall/Perl/Shorewall/Rules.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shorewall/Perl/Shorewall/Rules.pm b/Shorewall/Perl/Shorewall/Rules.pm index 981bd65de..f3eea2c95 100644 --- a/Shorewall/Perl/Shorewall/Rules.pm +++ b/Shorewall/Perl/Shorewall/Rules.pm @@ -2374,7 +2374,7 @@ sub process_rule ( $$$$$$$$$$$$$$$$$$$ ) { my ( $tgt, $options ) = split / /, $param; my $target_type = $builtin_target{$tgt}; fatal_error "Unknown target ($tgt)" unless $target_type; - fatal_error "The $tgt TARGET is now allowed in the filter table" unless $target_type & FILTER_TABLE; + fatal_error "The $tgt TARGET is not allowed in the filter table" unless $target_type & FILTER_TABLE; $action = $param; } else { $action = ''; @@ -2387,7 +2387,7 @@ sub process_rule ( $$$$$$$$$$$$$$$$$$$ ) { my ( $tgt, $options ) = split / /, $param; my $target_type = $builtin_target{$tgt}; fatal_error "Unknown target ($tgt)" unless $target_type; - fatal_error "The $tgt TARGET is now allowed in the filter table" unless $target_type & FILTER_TABLE; + fatal_error "The $tgt TARGET is not allowed in the filter table" unless $target_type & FILTER_TABLE; $action = $param; } else { $action = '';