aboutsummaryrefslogtreecommitdiffstats
path: root/report.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2002-04-01 08:16:29 +0000
committerEric S. Raymond <esr@thyrsus.com>2002-04-01 08:16:29 +0000
commitd988048914d0f54c06c3bf86ab97a4c14b9e78fe (patch)
treebf5d8b17652a97e6522d75b0ffaf874403010146 /report.c
parent71bc7ce6858ee50574dc574a948ea24b5d2d0bfc (diff)
downloadfetchmail-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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/report.c b/report.c
index 11be80d9..d201c740 100644
--- a/report.c
+++ b/report.c
@@ -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)