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
5051c609
...
5051c6097771457aa5f77d4e3ee3ac4ffd4791bf
authored
2005-08-30 16:09:27 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Minor bugfixes.
1 parent
0e2ce333
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
mh/inc.c
mh/mark.c
mh/inc.c
View file @
5051c60
...
...
@@ -253,14 +253,14 @@ main (int argc, char **argv)
if
((
rc
=
mu_mailbox_get_message
(
input
,
n
,
&
imsg
))
!=
0
)
{
mh_error
(
_
(
"%d: cannot get message: %s"
),
n
,
mu_strerror
(
errno
));
n
,
mu_strerror
(
rc
));
continue
;
}
if
((
rc
=
mu_mailbox_append_message
(
output
,
imsg
))
!=
0
)
{
mh_error
(
_
(
"%d: error appending message: %s"
),
n
,
mu_strerror
(
errno
));
n
,
mu_strerror
(
rc
));
continue
;
}
...
...
mh/mark.c
View file @
5051c60
...
...
@@ -156,7 +156,7 @@ action_list (void *item, void *data)
}
static
int
list_private
(
char
*
name
,
char
*
value
,
char
*
data
)
list_private
(
char
*
name
,
char
*
value
,
void
*
data
)
{
int
nlen
;
...
...
@@ -174,7 +174,7 @@ list_private (char *name, char *value, char *data)
}
static
int
list_public
(
char
*
name
,
char
*
value
,
char
*
data
)
list_public
(
char
*
name
,
char
*
value
,
void
*
data
)
{
printf
(
"%s: %s
\n
"
,
name
,
value
);
return
0
;
...
...
Please
register
or
sign in
to post a comment