Commit de6599e0 de6599e04a21054e73e050c1606e531e5bfb61a6 by Sergey Poznyakoff

(mu_syslog_error_printer): Bugfix.

1 parent ef05db99
/* 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);
vsnprintf (buf, sizeof buf, fmt, ap);
syslog (LOG_CRIT, "%s", buf);
#endif
return 0;
......