mirror of
https://github.com/MariaDB/server.git
synced 2026-05-03 13:45:34 +02:00
SSL fixes.
client/mysql.cc: Some memory was unfreed :( include/sslopt-case.h: Oh no, this typo made capath functionality unusable vio/viossl.c: Want to debug timeout issues.
This commit is contained in:
parent
d9dcb15b25
commit
28340acf02
3 changed files with 10 additions and 4 deletions
|
|
@ -37,12 +37,11 @@
|
|||
case OPT_SSL_CAPATH:
|
||||
opt_use_ssl = 1; /* true */
|
||||
my_free(opt_ssl_ca, MYF(MY_ALLOW_ZERO_PTR));
|
||||
opt_ssl_ca = my_strdup(optarg, MYF(0));
|
||||
opt_ssl_capath = my_strdup(optarg, MYF(0));
|
||||
break;
|
||||
case OPT_SSL_CIPHER:
|
||||
opt_use_ssl = 1; /* true */
|
||||
my_free(opt_ssl_cipher, MYF(MY_ALLOW_ZERO_PTR));
|
||||
opt_ssl_cipher = my_strdup(optarg, MYF(0));
|
||||
break;
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue