From 0aa0bebe07f030ea54a390cf7330bc4d5187798a Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Sat, 6 Jan 2018 13:56:36 -0800 Subject: [PATCH] Reword error message - "Invalid action name ..." to "Reserved action name ..." 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 80e219cf6..e0fb57a6a 100644 --- a/Shorewall/Perl/Shorewall/Rules.pm +++ b/Shorewall/Perl/Shorewall/Rules.pm @@ -1447,7 +1447,7 @@ sub new_action( $$$$$$ ) { my ( $action , $type, $options , $actionfile , $state, $proto ) = @_; - fatal_error "Invalid action name($action)" if reserved_name( $action ); + fatal_error "Reserved action name ($action)" if reserved_name( $action ); $actions{$action} = { file => $actionfile, actchain => '' , type => $type, options => $options , state => $state, proto => $proto };