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
26adedc2
...
26adedc2563a359bfdab035725443cfd01ed14ef
authored
2002-01-17 22:31:47 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
New function mu_verror().
1 parent
34554b52
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
mailbox/muerror.c
mailbox/muerror.c
View file @
26adedc
...
...
@@ -53,6 +53,14 @@ mu_syslog_error_printer (const char *fmt, va_list ap)
static
error_pfn_t
mu_error_printer
=
mu_default_error_printer
;
int
mu_verror
(
const
char
*
fmt
,
va_list
ap
)
{
if
(
mu_error_printer
)
return
(
*
mu_error_printer
)
(
fmt
,
ap
);
return
0
;
}
int
mu_error
(
const
char
*
fmt
,
...)
{
int
status
;
...
...
Please
register
or
sign in
to post a comment