Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
55cb6d64
Commit
55cb6d64
authored
Nov 16, 2007
by
msvensson@pilot.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#32429 ssl_cipher setting in my.cnf not read by libmysqlclient
parent
f4b671d8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
sql-common/client.c
sql-common/client.c
+5
-0
No files found.
sql-common/client.c
View file @
55cb6d64
...
...
@@ -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 */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment