summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Finch <dot@dot.at>2009-01-21 19:14:53 +0000
committerTony Finch <dot@dot.at>2009-01-21 19:14:53 +0000
commit513afc6abc5f3983dee8a8bad6aae367e6c62d84 (patch)
treec01827a0c7a8952d90679594b0871a9b0fdc3ddc
parent5ff854611127e1bd9b8ba4b61935f1550e96db38 (diff)
Fix the previous commit that broke non-SMTP address verification.
-rw-r--r--src/src/verify.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/src/verify.c b/src/src/verify.c
index ab7e2756f..f32f8710d 100644
--- a/src/src/verify.c
+++ b/src/src/verify.c
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/verify.c,v 1.52 2008/09/29 11:41:07 nm4 Exp $ */
+/* $Cambridge: exim/src/src/verify.c,v 1.53 2009/01/21 19:14:53 fanf2 Exp $ */
/*************************************************
* Exim - an Internet mail transport agent *
@@ -893,7 +893,7 @@ va_start(ap, format);
if (smtp_out && (f == smtp_out))
smtp_vprintf(format, ap);
else
- fprintf(f, format, ap);
+ vfprintf(f, format, ap);
va_end(ap);
}