Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jobmail committed Aug 2, 2024
1 parent ae12612 commit 1a18844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion refsapi_mysql_mngr.h
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class mysql_mngr {
mysql_optionsv(conn, MYSQL_OPT_PROTOCOL, (void *)&prot_type);
mysql_optionsv(conn, MYSQL_OPT_CONNECT_TIMEOUT, (void *)&prms->timeout);
my_bool my_true = true;
mysql_optionsv(conn, MYSQL_OPT_RECONNECT, (const char *)&my_true);
mysql_optionsv(conn, MYSQL_OPT_RECONNECT, (const char *)&my_true);
if (!prms->db_chrs.empty())
mysql_set_character_set(conn, prms->db_chrs.c_str());
}
Expand Down

0 comments on commit 1a18844

Please sign in to comment.