aboutsummaryrefslogtreecommitdiffstats
path: root/rfc822.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1999-03-10 09:14:57 +0000
committerEric S. Raymond <esr@thyrsus.com>1999-03-10 09:14:57 +0000
commitf5c864eecabe96d402f32ea37ba936ac05516b88 (patch)
tree9b05bb08b4562c7c0e5831bb6d241498fa4a1365 /rfc822.c
parentde52352c90331b5967686bf4b6519f555b18a13f (diff)
downloadfetchmail-f5c864eecabe96d402f32ea37ba936ac05516b88.tar.gz
fetchmail-f5c864eecabe96d402f32ea37ba936ac05516b88.tar.bz2
fetchmail-f5c864eecabe96d402f32ea37ba936ac05516b88.zip
Eliminate bad realloc.
svn path=/trunk/; revision=2409
Diffstat (limited to 'rfc822.c')
-rw-r--r--rfc822.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rfc822.c b/rfc822.c
index 8e0e4a3e..9195d9bf 100644
--- a/rfc822.c
+++ b/rfc822.c
@@ -178,7 +178,7 @@ const char *host; /* server hostname */
#ifndef TESTMAIN
if (outlevel >= O_DEBUG)
- report_complete(stdout, 0, "Rewritten version is %s\n", buf);
+ report_complete(stdout, "Rewritten version is %s\n", buf);
#endif /* TESTMAIN */
return(buf);
}