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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
6ba1e8a0
Commit
6ba1e8a0
authored
Aug 24, 2007
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge pilot.(none):/data/msvensson/mysql/bug30593/my50-bug30593
into pilot.(none):/data/msvensson/mysql/mysql-5.0-maint
parents
17f03bb7
50911dec
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
sql/sql_show.cc
sql/sql_show.cc
+3
-2
No files found.
sql/sql_show.cc
View file @
6ba1e8a0
...
@@ -1739,12 +1739,13 @@ static bool show_status_array(THD *thd, const char *wild,
...
@@ -1739,12 +1739,13 @@ static bool show_status_array(THD *thd, const char *wild,
if
(
thd
->
net
.
vio
->
ssl_arg
)
if
(
thd
->
net
.
vio
->
ssl_arg
)
{
{
char
*
to
=
buff
;
char
*
to
=
buff
;
for
(
int
i
=
0
;
i
++
;)
char
*
buff_end
=
buff
+
sizeof
(
buff
);
for
(
int
i
=
0
;
to
<
buff_end
;
i
++
)
{
{
const
char
*
p
=
SSL_get_cipher_list
((
SSL
*
)
thd
->
net
.
vio
->
ssl_arg
,
i
);
const
char
*
p
=
SSL_get_cipher_list
((
SSL
*
)
thd
->
net
.
vio
->
ssl_arg
,
i
);
if
(
p
==
NULL
)
if
(
p
==
NULL
)
break
;
break
;
to
=
str
mov
(
to
,
p
);
to
=
str
nmov
(
to
,
p
,
buff_end
-
to
-
1
);
*
to
++=
':'
;
*
to
++=
':'
;
}
}
if
(
to
!=
buff
)
if
(
to
!=
buff
)
...
...
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