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
89a53ef3
Commit
89a53ef3
authored
Oct 03, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix problem when both option SSL and COMPRESS specified
parent
538e1881
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
client/mysqltest.c
client/mysqltest.c
+6
-1
No files found.
client/mysqltest.c
View file @
89a53ef3
...
...
@@ -2991,7 +2991,12 @@ void do_connect(struct st_command *command)
con_options
=
ds_options
.
str
;
while
(
*
con_options
)
{
char
*
end
=
con_options
;
char
*
end
;
/* Step past any spaces in beginning of option*/
while
(
*
con_options
&&
my_isspace
(
charset_info
,
*
con_options
))
con_options
++
;
/* Find end of this option */
end
=
con_options
;
while
(
*
end
&&
!
my_isspace
(
charset_info
,
*
end
))
end
++
;
if
(
!
strncmp
(
con_options
,
"SSL"
,
3
))
...
...
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