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
3fc22ca4
Commit
3fc22ca4
authored
Feb 16, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#13809 mysql-test: --replace_result option works on Windows incorrect
parent
42cc473d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
client/mysqltest.c
client/mysqltest.c
+7
-1
No files found.
client/mysqltest.c
View file @
3fc22ca4
...
...
@@ -2517,10 +2517,16 @@ int read_line(char *buf, int size)
continue
;
}
/* Line counting is independent of state */
if
(
c
==
'\n'
)
{
/* Line counting is independent of state */
cur_file
->
lineno
++
;
/* Convert cr/lf to lf */
if
(
p
!=
buf
&&
*
(
p
-
1
)
==
'\r'
)
*
(
p
-
1
)
=
0
;
}
switch
(
state
)
{
case
R_NORMAL
:
/* Only accept '{' in the beginning of a line */
...
...
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