Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
9ff40349
...
9ff403495c8759c2483057a2c499c4e8e261277a
authored
2005-05-27 06:20:59 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(move_message): Fix error diagnostics format.
1 parent
afb78dee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
movemail/movemail.c
movemail/movemail.c
View file @
9ff4034
...
...
@@ -211,13 +211,13 @@ move_message (mailbox_t src, mailbox_t dst, size_t msgno)
if
((
rc
=
mailbox_get_message
(
src
,
msgno
,
&
msg
))
!=
0
)
{
fprintf
(
stderr
,
_
(
"Cannot read message %lu: %s"
),
fprintf
(
stderr
,
_
(
"Cannot read message %lu: %s
\n
"
),
(
unsigned
long
)
msgno
,
mu_strerror
(
rc
));
return
rc
;
}
if
((
rc
=
mailbox_append_message
(
dst
,
msg
))
!=
0
)
{
fprintf
(
stderr
,
_
(
"Cannot append message %lu: %s"
),
fprintf
(
stderr
,
_
(
"Cannot append message %lu: %s
\n
"
),
(
unsigned
long
)
msgno
,
mu_strerror
(
rc
));
return
rc
;
}
...
...
Please
register
or
sign in
to post a comment