1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-07 02:42:49 +03:00

Follow up of fix for CONC-680:

mysql_old_password is disabled by default (setting DISABLED YES),
but can be used if the plugin was added to the list of restricted
authentication plugins (via mysql_optionsv using option
MARIADB_OPT_RESTRICTED_AUTH).
This commit is contained in:
Georg Richter
2024-03-10 14:04:27 +01:00
parent 4a74f8784d
commit 86e2e87fa2
6 changed files with 18 additions and 6 deletions

View File

@@ -688,6 +688,7 @@ void run_tests(struct my_tests_st *test) {
if (!mysql_real_connect(mysql, hostname, username, password, schema, port, socketname, 0))
{
diag("Error: %s", mysql_error(mysql));
BAIL_OUT("Can't establish TLS connection to server.");
}