From 9a1d331ebb5ada1899dfbd7bfa5a20a0ec44ea62 Mon Sep 17 00:00:00 2001 From: Martin Kiesel Date: Tue, 5 Jun 2018 14:12:54 +0200 Subject: [PATCH] End sentence with a period Fixed example output: ``` [!!] User 'a@localhost' has user name as password. [!!] User 'b@%' does not specify hostname restrictions. ``` --- mysqltuner.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysqltuner.pl b/mysqltuner.pl index a9fed1a..70c3f33 100755 --- a/mysqltuner.pl +++ b/mysqltuner.pl @@ -1778,7 +1778,7 @@ sub security_recommendations { if (@mysqlstatlist) { foreach my $line ( sort @mysqlstatlist ) { chomp($line); - badprint "User '" . $line . "' does not specify hostname restrictions"; + badprint "User '" . $line . "' does not specify hostname restrictions."; } push( @generalrec, "Restrict Host for user\@% to user\@SpecificDNSorIp" );