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
a169482a
Commit
a169482a
authored
Oct 04, 2001
by
sasha@mysql.sashanet.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed bug in SSL code
updated results - now ready to push
parent
a71f818a
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
1 deletion
+3
-1
mysql-test/r/rpl000017.result
mysql-test/r/rpl000017.result
+1
-0
mysql-test/r/type_enum.result
mysql-test/r/type_enum.result
+1
-0
sql/mysqld.cc
sql/mysqld.cc
+1
-1
No files found.
mysql-test/r/rpl000017.result
View file @
a169482a
reset master;
grant file on *.* to replicate@localhost identified by 'aaaaaaaaaaaaaaab';
grant file on *.* to replicate@127.0.0.1 identified by 'aaaaaaaaaaaaaaab';
slave start;
drop table if exists t1;
create table t1(n int);
...
...
mysql-test/r/type_enum.result
View file @
a169482a
This diff is collapsed.
Click to expand it.
sql/mysqld.cc
View file @
a169482a
...
...
@@ -2059,7 +2059,7 @@ The server will not act as a slave.");
}
#endif
#ifdef HAVE_OPENSSL
my_free
((
gptr
)
ssl_acceptor_fd
,
MYF
(
0
));
my_free
((
gptr
)
ssl_acceptor_fd
,
MYF
(
MY_ALLOW_ZERO_PTR
));
#endif
/* HAVE_OPENSSL */
/* Wait until cleanup is done */
(
void
)
pthread_mutex_lock
(
&
LOCK_thread_count
);
...
...
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