diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2002-04-01 08:16:29 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2002-04-01 08:16:29 +0000 |
commit | d988048914d0f54c06c3bf86ab97a4c14b9e78fe (patch) | |
tree | bf5d8b17652a97e6522d75b0ffaf874403010146 /report.c | |
parent | 71bc7ce6858ee50574dc574a948ea24b5d2d0bfc (diff) | |
download | fetchmail-d988048914d0f54c06c3bf86ab97a4c14b9e78fe.tar.gz fetchmail-d988048914d0f54c06c3bf86ab97a4c14b9e78fe.tar.bz2 fetchmail-d988048914d0f54c06c3bf86ab97a4c14b9e78fe.zip |
Other routine fixups.
svn path=/trunk/; revision=3604
Diffstat (limited to 'report.c')
-rw-r--r-- | report.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -15,6 +15,7 @@ #endif #include <stdio.h> #include <errno.h> +#include <string.h> #if defined(HAVE_SYSLOG) #include <syslog.h> #endif @@ -104,7 +105,7 @@ report (FILE *errfp, message, va_alist) if (partial_message_size_used != 0) { partial_message_size_used = 0; - report (errfp, 0, GT_("%s (log message incomplete)"), partial_message); + report (errfp, GT_("%s (log message incomplete)"), partial_message); } #if defined(HAVE_SYSLOG) |