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
424a6470
Commit
424a6470
authored
Sep 03, 2003
by
kostja@oak.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
post-merge fixes
parent
36dd82c1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
mysql-test/r/func_crypt.result
mysql-test/r/func_crypt.result
+6
-6
sql/slave.cc
sql/slave.cc
+1
-1
No files found.
mysql-test/r/func_crypt.result
View file @
424a6470
...
...
@@ -3,7 +3,7 @@ length(encrypt('foo', 'ff')) <> 0
1
select password('abc');
password('abc')
*0
d3ced9bec10a777aec23ccc353a8c08a633045e
*0
D3CED9BEC10A777AEC23CCC353A8C08A633045E
select password('');
password('')
...
...
@@ -15,7 +15,7 @@ old_password('')
select password('gabbagabbahey');
password('gabbagabbahey')
*
b0f99d2963660dd7e16b751ec9ee2f17b6a68fa
6
*
B0F99D2963660DD7E16B751EC9EE2F17B6A68FA
6
select old_password('idkfa');
old_password('idkfa')
5c078dc54ca0fcca
...
...
@@ -43,7 +43,7 @@ old_password('')
select password('idkfa');
password('idkfa')
*
b669c9dac3aa6f2254b03cdef8dfdd6b2d1054ba
*
B669C9DAC3AA6F2254B03CDEF8DFDD6B2D1054BA
select old_password('idkfa');
old_password('idkfa')
5c078dc54ca0fcca
...
...
@@ -64,13 +64,13 @@ old_password('idkfa')
set old_passwords=off;
select password('idkfa ');
password('idkfa ')
*2
dc31d90647b4c1abc9231563d2236e96c9a2db
2
*2
DC31D90647B4C1ABC9231563D2236E96C9A2DB
2
select password('idkfa');
password('idkfa')
*
b669c9dac3aa6f2254b03cdef8dfdd6b2d1054ba
*
B669C9DAC3AA6F2254B03CDEF8DFDD6B2D1054BA
select password(' idkfa');
password(' idkfa')
*12
b099e56bb7fe8d43c78fd834a9d1d11178d
045
*12
B099E56BB7FE8D43C78FD834A9D1D11178D
045
select old_password('idkfa');
old_password('idkfa')
5c078dc54ca0fcca
...
...
sql/slave.cc
View file @
424a6470
...
...
@@ -1554,7 +1554,7 @@ void init_master_info_with_options(MASTER_INFO* mi)
if
(
master_user
)
strmake
(
mi
->
user
,
master_user
,
sizeof
(
mi
->
user
)
-
1
);
if
(
master_password
)
strmake
(
mi
->
password
,
master_password
,
HASH
_PASSWORD_LENGTH
);
strmake
(
mi
->
password
,
master_password
,
MAX
_PASSWORD_LENGTH
);
mi
->
port
=
master_port
;
mi
->
connect_retry
=
master_connect_retry
;
...
...
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