From c58611f7fb0dcf3e1ce4a113f45590ed0ee3a735 Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Mon, 13 Jun 2016 12:21:16 -0700 Subject: [PATCH] Correct a warning message Signed-off-by: Tom Eastep --- Shorewall/Perl/Shorewall/Config.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shorewall/Perl/Shorewall/Config.pm b/Shorewall/Perl/Shorewall/Config.pm index ba57bd133..b79a4b15d 100644 --- a/Shorewall/Perl/Shorewall/Config.pm +++ b/Shorewall/Perl/Shorewall/Config.pm @@ -5767,7 +5767,7 @@ sub get_configuration( $$$$ ) { close_file; - warning_message "Version Mismatch: Shorewall6 is version $currentline, while the Shorewal version is $globals{VERSION}" unless $currentline eq $globals{VERSION}; + warning_message "Version Mismatch: Shorewall6 is version $currentline, while the Shorewall version is $globals{VERSION}" unless $currentline eq $globals{VERSION}; } my $have_capabilities;