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
643ce397
Commit
643ce397
authored
Aug 24, 2007
by
msvensson@pilot.(none)
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
4fcea0fc
e1b9e55a
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 @
643ce397
...
...
@@ -1739,12 +1739,13 @@ static bool show_status_array(THD *thd, const char *wild,
if
(
thd
->
net
.
vio
->
ssl_arg
)
{
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
);
if
(
p
==
NULL
)
break
;
to
=
str
mov
(
to
,
p
);
to
=
str
nmov
(
to
,
p
,
buff_end
-
to
-
1
);
*
to
++=
':'
;
}
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