From 71fb1a8cbde82b3f435514bbe9ae7132feaeed95 Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Thu, 27 Oct 2016 14:32:43 -0700 Subject: [PATCH] Correct error message ( s/\*/+/ ) Signed-off-by: Tom Eastep --- 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 f5dda3bd2..7ab5d493f 100644 --- a/Shorewall/Perl/Shorewall/Rules.pm +++ b/Shorewall/Perl/Shorewall/Rules.pm @@ -5394,7 +5394,7 @@ sub process_snat1( $$$$$$$$$$$$ ) { # Next, parse the DEST column # if ( $inaction ) { - fatal_error q('*' is not allowed within an action body) if $pre_nat; + fatal_error q('+' is not allowed within an action body) if $pre_nat; $destnets = $dest; } elsif ( $family == F_IPV4 ) { if ( $dest =~ /^([^:]+)::([^:]*)$/ ) {