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
de6599e0
...
de6599e04a21054e73e050c1606e531e5bfb61a6
authored
2005-02-25 16:33:32 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mu_syslog_error_printer): Bugfix.
1 parent
ef05db99
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
mailbox/muerror.c
mailbox/muerror.c
View file @
de6599e
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
Copyright (C) 1999, 2000, 2001
, 2005
Free Software Foundation, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
...
...
@@ -44,7 +44,7 @@ mu_syslog_error_printer (const char *fmt, va_list ap)
vsyslog
(
LOG_CRIT
,
fmt
,
ap
);
#else
char
buf
[
128
];
snprintf
(
buf
,
sizeof
buf
,
fmt
,
ap
);
v
snprintf
(
buf
,
sizeof
buf
,
fmt
,
ap
);
syslog
(
LOG_CRIT
,
"%s"
,
buf
);
#endif
return
0
;
...
...
Please
register
or
sign in
to post a comment