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
91197c35
Commit
91197c35
authored
Mar 21, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge neptunus.(none):/home/msvensson/mysql/bug18310/my51-bug18310
into neptunus.(none):/home/msvensson/mysql/mysql-5.1
parents
ede2943e
033059d5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
BUILD/SETUP.sh
BUILD/SETUP.sh
+2
-2
sql/mysqld.cc
sql/mysqld.cc
+4
-2
No files found.
BUILD/SETUP.sh
View file @
91197c35
...
...
@@ -44,8 +44,8 @@ set -e
export
AM_MAKEFLAGS
AM_MAKEFLAGS
=
"-j 4"
# SSL library to use.
Should be changed to --with-yassl
SSL_LIBRARY
=
--with-
open
ssl
# SSL library to use.
SSL_LIBRARY
=
--with-
ya
ssl
# If you are not using codefusion add "-Wpointer-arith" to WARNINGS
# The following warning flag will give too many warnings:
...
...
sql/mysqld.cc
View file @
91197c35
...
...
@@ -6605,9 +6605,11 @@ static int show_ssl_get_cipher_list(THD *thd, SHOW_VAR *var, char *buff)
{
int
i
;
const
char
*
p
;
for
(
i
=
0
;
(
p
=
SSL_get_cipher_list
((
SSL
*
)
thd
->
net
.
vio
->
ssl_arg
,
i
));
i
++
)
char
*
end
=
buff
+
SHOW_VAR_FUNC_BUFF_SIZE
;
for
(
i
=
0
;
(
p
=
SSL_get_cipher_list
((
SSL
*
)
thd
->
net
.
vio
->
ssl_arg
,
i
))
&&
buff
<
end
;
i
++
)
{
buff
=
str
mov
(
buff
,
p
);
buff
=
str
nmov
(
buff
,
p
,
end
-
buff
-
1
);
*
buff
++=
':'
;
}
if
(
i
)
...
...
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