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
813c6984
...
813c698409b7a559f0588e3e7757cfef837679f0
authored
2003-12-28 16:39:17 +0000
by
uid65697
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Minor changes for compatibility with the Emacs implementation.
1 parent
46d848f2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
movemail/movemail.c
movemail/movemail.c
View file @
813c698
...
...
@@ -184,6 +184,16 @@ compatibility_mode (mailbox_t *mbx, char *source_name, char *password,
}
int
movemail_error_printer
(
const
char
*
fmt
,
va_list
ap
)
{
int
n
;
n
=
fprintf
(
stderr
,
"%s: "
,
program_invocation_short_name
);
n
+=
vfprintf
(
stderr
,
fmt
,
ap
);
fputc
(
'\n'
,
stderr
);
return
n
+
1
;
}
int
main
(
int
argc
,
char
**
argv
)
{
int
index
;
...
...
@@ -210,6 +220,8 @@ main (int argc, char **argv)
}
/* argument parsing */
mu_error_set_print
(
movemail_error_printer
);
mu_argp_init
(
program_version
,
NULL
);
#ifdef WITH_TLS
mu_tls_init_client_argp
();
...
...
Please
register
or
sign in
to post a comment