mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
Bug#32429 ssl_cipher setting in my.cnf not read by libmysqlclient
sql-common/client.c: Store ssl_cipher setting read from my.cnf into "option->ssl_cipher"
This commit is contained in:
parent
5c836d24f6
commit
0b7dad09ac
1 changed files with 5 additions and 0 deletions
|
@ -1085,11 +1085,16 @@ void mysql_read_default_options(struct st_mysql_options *options,
|
|||
my_free(options->ssl_capath, MYF(MY_ALLOW_ZERO_PTR));
|
||||
options->ssl_capath = my_strdup(opt_arg, MYF(MY_WME));
|
||||
break;
|
||||
case 26: /* ssl_cipher */
|
||||
my_free(options->ssl_cipher, MYF(MY_ALLOW_ZERO_PTR));
|
||||
options->ssl_cipher= my_strdup(opt_arg, MYF(MY_WME));
|
||||
break;
|
||||
#else
|
||||
case 13: /* Ignore SSL options */
|
||||
case 14:
|
||||
case 15:
|
||||
case 16:
|
||||
case 26:
|
||||
break;
|
||||
#endif /* HAVE_OPENSSL */
|
||||
case 17: /* charset-lib */
|
||||
|
|
Loading…
Add table
Reference in a new issue