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
d52b1cf5
Commit
d52b1cf5
authored
Aug 08, 2002
by
walrus@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sslopt-case.h changed optarg to argument, decomment ssl-key option
parent
23a1a5db
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
include/sslopt-case.h
include/sslopt-case.h
+6
-4
No files found.
include/sslopt-case.h
View file @
d52b1cf5
...
...
@@ -22,25 +22,27 @@
opt_use_ssl
=
1
;
/* true */
/* QQ to be removed??? my_free(opt_ssl_key, MYF(MY_ALLOW_ZERO_PTR)); */
/* QQ to be removed??? opt_ssl_key = my_strdup(optarg, MYF(0)); */
my_free
(
opt_ssl_key
,
MYF
(
MY_ALLOW_ZERO_PTR
));
opt_ssl_key
=
my_strdup
(
argument
,
MYF
(
0
));
break
;
case
OPT_SSL_CERT
:
opt_use_ssl
=
1
;
/* true */
my_free
(
opt_ssl_cert
,
MYF
(
MY_ALLOW_ZERO_PTR
));
opt_ssl_cert
=
my_strdup
(
optarg
,
MYF
(
0
));
opt_ssl_cert
=
my_strdup
(
argument
,
MYF
(
0
));
break
;
case
OPT_SSL_CA
:
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_ca
=
my_strdup
(
argument
,
MYF
(
0
));
break
;
case
OPT_SSL_CAPATH
:
opt_use_ssl
=
1
;
/* true */
my_free
(
opt_ssl_capath
,
MYF
(
MY_ALLOW_ZERO_PTR
));
opt_ssl_capath
=
my_strdup
(
optarg
,
MYF
(
0
));
opt_ssl_capath
=
my_strdup
(
argument
,
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
));
opt_ssl_cipher
=
my_strdup
(
argument
,
MYF
(
0
));
break
;
#endif
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