X-Git-Url: https://git.exim.org/users/jgh/exim.git/blobdiff_plain/6b5242044dfe4061d52edfd975c6020914e3c1be..925ac8e4f1c5d365ddea2f7aee460cd0a3cd409d:/src/src/verify.c diff --git a/src/src/verify.c b/src/src/verify.c index 6a50af506..3a8f9b6bc 100644 --- a/src/src/verify.c +++ b/src/src/verify.c @@ -1177,7 +1177,7 @@ if(cutthrough.fd < 0) if( #ifdef SUPPORT_TLS - (tls_out.active == cutthrough.fd) ? tls_write(FALSE, ctblock.buffer, n) : + tls_out.active == cutthrough.fd ? tls_write(FALSE, ctblock.buffer, n, FALSE) : #endif send(cutthrough.fd, ctblock.buffer, n, 0) > 0 ) @@ -1517,7 +1517,7 @@ va_list ap; va_start(ap, format); if (smtp_out && (f == smtp_out)) - smtp_vprintf(format, ap); + smtp_vprintf(format, FALSE, ap); else vfprintf(f, format, ap); va_end(ap);