Fix else+if construction
This commit is contained in:
parent
b1a1829362
commit
ce23262b27
1 changed files with 2 additions and 2 deletions
|
@ -1780,10 +1780,10 @@ sub security_recommendations {
|
|||
$PASS_COLUMN_NAME =
|
||||
"IF(plugin='mysql_native_password', authentication_string, password)";
|
||||
}
|
||||
else if ($authstring_column_exists) {
|
||||
elsif ($authstring_column_exists) {
|
||||
$PASS_COLUMN_NAME = 'authentication_string';
|
||||
}
|
||||
else if (!$password_column_exists) {
|
||||
elsif (!$password_column_exists) {
|
||||
infoprint "Skipped due to none of known auth columns exists";
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue