From: Tony Finch Date: Wed, 21 Jan 2009 19:14:53 +0000 (+0000) Subject: Fix the previous commit that broke non-SMTP address verification. X-Git-Tag: DEVEL_PDKIM_START~1 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/513afc6abc5f3983dee8a8bad6aae367e6c62d84 Fix the previous commit that broke non-SMTP address verification. --- 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); }