Merge pull request #3834 from saunderst/fix-ssl_p2s_capath-typo-in-refresh_variables

Fix ssl_p2s_capath typo in MySQL_Thread::refresh_variables()
pull/3856/head
René Cannaò 4 years ago committed by GitHub
commit 3245cf292d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3904,7 +3904,7 @@ void MySQL_Thread::refresh_variables() {
if (mysql_thread___ssl_p2s_ca) free(mysql_thread___ssl_p2s_ca);
mysql_thread___ssl_p2s_ca=GloMTH->get_variable_string((char *)"ssl_p2s_ca");
if (mysql_thread___ssl_p2s_capath) free(mysql_thread___ssl_p2s_capath);
mysql_thread___ssl_p2s_capath=GloMTH->get_variable_string((char *)"ssl_p2s_ca");
mysql_thread___ssl_p2s_capath=GloMTH->get_variable_string((char *)"ssl_p2s_capath");
if (mysql_thread___ssl_p2s_cert) free(mysql_thread___ssl_p2s_cert);
mysql_thread___ssl_p2s_cert=GloMTH->get_variable_string((char *)"ssl_p2s_cert");
if (mysql_thread___ssl_p2s_key) free(mysql_thread___ssl_p2s_key);

Loading…
Cancel
Save