mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Bug#21011 The [client] group header was overwritten by "password" option in upgrade_defaults file which confused mysqlcheck thus used to prevent the whole thing from running correctly when the "--password=" option is specified on mysql_upgrade command line with no corresponding "--user=" option
This commit is contained in:
@@ -200,7 +200,7 @@ retry_open:
|
|||||||
}
|
}
|
||||||
buffer_end= strnmov(buffer, "\n[client]", sizeof(buffer));
|
buffer_end= strnmov(buffer, "\n[client]", sizeof(buffer));
|
||||||
if (opt_password)
|
if (opt_password)
|
||||||
buffer_end= strxnmov(buffer, sizeof(buffer),
|
buffer_end= strxnmov(buffer_end, sizeof(buffer),
|
||||||
"\npassword=", opt_password, NullS);
|
"\npassword=", opt_password, NullS);
|
||||||
error= my_write(defaults_file, buffer, (int) (buffer_end - buffer),
|
error= my_write(defaults_file, buffer, (int) (buffer_end - buffer),
|
||||||
MYF(MY_WME | MY_FNABP));
|
MYF(MY_WME | MY_FNABP));
|
||||||
|
Reference in New Issue
Block a user