Missing password is not recognized #412
This commit is contained in:
parent
8724eb7926
commit
4c14ba9718
1 changed files with 2 additions and 2 deletions
|
@ -1739,7 +1739,7 @@ sub security_recommendations {
|
||||||
my $PASS_COLUMN_NAME = 'password';
|
my $PASS_COLUMN_NAME = 'password';
|
||||||
if ( $myvar{'version'} =~ /5\.7|10\..*MariaDB*/ ) {
|
if ( $myvar{'version'} =~ /5\.7|10\..*MariaDB*/ ) {
|
||||||
$PASS_COLUMN_NAME =
|
$PASS_COLUMN_NAME =
|
||||||
"IF(plugin='mysql_native_password', authentication_string, 'password')";
|
"IF(plugin='mysql_native_password', authentication_string, password)";
|
||||||
}
|
}
|
||||||
debugprint "Password column = $PASS_COLUMN_NAME";
|
debugprint "Password column = $PASS_COLUMN_NAME";
|
||||||
|
|
||||||
|
@ -3504,7 +3504,7 @@ sub mysqsl_pfs {
|
||||||
push( @generalrec,
|
push( @generalrec,
|
||||||
"Consider installing Sys schema from https://github.com/good-dba/mariadb-sys for MariaDB"
|
"Consider installing Sys schema from https://github.com/good-dba/mariadb-sys for MariaDB"
|
||||||
) unless ( mysql_version_eq( 10, 0 ) or mysql_version_eq( 5, 5 ) );
|
) unless ( mysql_version_eq( 10, 0 ) or mysql_version_eq( 5, 5 ) );
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in a new issue