From 1e496246fc39c52af3b9622260cf3715e0808914 Mon Sep 17 00:00:00 2001 From: Thomas Saunders Date: Mon, 4 Apr 2022 20:04:17 -0700 Subject: [PATCH] fix ssl_p2s_capath typo in MySQL_Thread::refresh_variables --- lib/MySQL_Thread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/MySQL_Thread.cpp b/lib/MySQL_Thread.cpp index 17fbc0024..a6f962c72 100644 --- a/lib/MySQL_Thread.cpp +++ b/lib/MySQL_Thread.cpp @@ -3892,7 +3892,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);