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
1009e0d3
Commit
1009e0d3
authored
Feb 20, 2007
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New version of 'do_cat_file' that will trim cr/lf to lf
parent
ca994409
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
3 deletions
+20
-3
client/mysqltest.c
client/mysqltest.c
+20
-3
No files found.
client/mysqltest.c
View file @
1009e0d3
...
...
@@ -2178,7 +2178,7 @@ void do_cat_file(struct st_command *command)
{
int
fd
;
uint
len
;
byte
buff
[
512
];
char
buff
[
512
];
static
DYNAMIC_STRING
ds_filename
;
const
struct
command_arg
cat_file_args
[]
=
{
"filename"
,
ARG_STRING
,
TRUE
,
&
ds_filename
,
"File to read from"
...
...
@@ -2195,10 +2195,27 @@ void do_cat_file(struct st_command *command)
if
((
fd
=
my_open
(
ds_filename
.
str
,
O_RDONLY
,
MYF
(
0
)))
<
0
)
die
(
"Failed to open file %s"
,
ds_filename
.
str
);
while
((
len
=
my_read
(
fd
,
&
buff
,
while
((
len
=
my_read
(
fd
,
(
byte
*
)
&
buff
,
sizeof
(
buff
),
MYF
(
0
)))
>
0
)
{
dynstr_append_mem
(
&
ds_res
,
buff
,
len
);
char
*
p
=
buff
,
*
start
=
buff
;
while
(
p
<
buff
+
len
)
{
/* Convert cr/lf to lf */
if
(
*
p
==
'\r'
&&
*
(
p
+
1
)
&&
*
(
p
+
1
)
==
'\n'
)
{
/* Add fake newline instead of cr and output the line */
*
p
=
'\n'
;
p
++
;
/* Step past the "fake" newline */
dynstr_append_mem
(
&
ds_res
,
start
,
p
-
start
);
p
++
;
/* Step past the "fake" newline */
start
=
p
;
}
else
p
++
;
}
/* Output any chars that migh be left */
dynstr_append_mem
(
&
ds_res
,
start
,
p
-
start
);
}
my_close
(
fd
,
MYF
(
0
));
dynstr_free
(
&
ds_filename
);
...
...
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