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
de3f217e
Commit
de3f217e
authored
Oct 13, 2006
by
msvensson@shellback.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use 'my_strnncoll_simple' instead of 'strncasecmp'
parent
c2574de3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
client/mysqltest.c
client/mysqltest.c
+4
-2
No files found.
client/mysqltest.c
View file @
de3f217e
...
@@ -3397,8 +3397,10 @@ int read_line(char *buf, int size)
...
@@ -3397,8 +3397,10 @@ int read_line(char *buf, int size)
DBUG_RETURN
(
0
);
DBUG_RETURN
(
0
);
}
}
else
if
((
c
==
'{'
&&
else
if
((
c
==
'{'
&&
(
!
strncasecmp
(
buf
,
"while"
,
min
(
5
,
p
-
buf
))
||
(
!
my_strnncoll_simple
(
charset_info
,
"while"
,
5
,
!
strncasecmp
(
buf
,
"if"
,
min
(
2
,
p
-
buf
)))))
buf
,
min
(
5
,
p
-
buf
),
0
)
||
!
my_strnncoll_simple
(
charset_info
,
"if"
,
2
,
buf
,
min
(
2
,
p
-
buf
),
0
))))
{
{
/* Only if and while commands can be terminated by { */
/* Only if and while commands can be terminated by { */
*
p
++=
c
;
*
p
++=
c
;
...
...
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