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
5d172471
Commit
5d172471
authored
Aug 07, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
merged
Docs/Makefile.am: Auto merged acinclude.m4: Auto merged sql/sql_acl.cc: Auto merged
parents
a2afee06
0a473093
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
Docs/Makefile.am
Docs/Makefile.am
+2
-2
sql/sql_acl.cc
sql/sql_acl.cc
+2
-2
No files found.
Docs/Makefile.am
View file @
5d172471
...
...
@@ -41,10 +41,10 @@ paper: manual_a4.ps manual_letter.ps $(PDFMANUAL)
# The Makefile contains the previous version so we can not use that
include.texi
:
../configure.in
echo
"@c This file is autogenerated by the Makefile"
>
$@
echo
-n
"@set mysql
_
version "
>>
$@
echo
-n
"@set mysqlversion "
>>
$@
grep
"AM_INIT_AUTOMAKE(mysql, "
../configure.in |
\
sed
-e
's;AM_INIT_AUTOMAKE(mysql, ;;'
-e
's;);;'
>>
$@
echo
-n
"@set default
_
port "
>>
$@
echo
-n
"@set defaultport "
>>
$@
grep
"MYSQL_TCP_PORT_DEFAULT="
../configure.in |
\
sed
-e
's;MYSQL_TCP_PORT_DEFAULT=;;'
>>
$@
...
...
sql/sql_acl.cc
View file @
5d172471
...
...
@@ -233,10 +233,10 @@ my_bool acl_init(THD *org_thd, bool dont_read_acl_tables)
"Found old style password for user '%s'. Ignoring user. (You may want to restart mysqld using --old-protocol)"
,
user
.
user
?
user
.
user
:
""
);
/* purecov: tested */
}
else
if
(
length
%
8
)
// This holds true for passwords
else
if
(
length
%
8
||
length
>
16
)
{
sql_print_error
(
"Found invalid password for user: '%s
@
%s'; Ignoring user"
,
"Found invalid password for user: '%s
'@'
%s'; Ignoring user"
,
user
.
user
?
user
.
user
:
""
,
user
.
host
.
hostname
?
user
.
host
.
hostname
:
""
);
/* purecov: tested */
continue
;
/* purecov: tested */
...
...
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