Skip to content

Commit

Permalink
Merge branch '3.3' into 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
9EOR9 committed Dec 21, 2024
2 parents 4039e5c + 486a07c commit 52d0a38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unittest/libmariadb/connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@ static int test_unix_socket_close(MYSQL *unused __attribute__((unused)))

for (i=0; i < 10000; i++)
{
my_test_connect(mysql, "localhost", "user", "passwd", NULL, 0, "./dummy_sock", 0, 1);
mysql_real_connect(mysql, "localhost", "user", "passwd", NULL, 0, "./dummy_sock", 0);
/* check if we run out of sockets */
if (mysql_errno(mysql) == 2001)
{
Expand Down Expand Up @@ -2434,7 +2434,7 @@ static int test_conc748(MYSQL *my __attribute__((unused)))
mysql_optionsv(mysql, MYSQL_OPT_SSL_CIPHER, ciphers[i]);

if (!my_test_connect(mysql, hostname, username,
password, schema, port, socketname, 0))
password, schema, port, socketname, 0, 0))
{
diag("error: %s", mysql_error(mysql));
return FAIL;
Expand Down

0 comments on commit 52d0a38

Please sign in to comment.