Gitweb:
https://git.exim.org/exim.git/commitdiff/a842359f622190904ceccfff1afff021570566eb
Commit: a842359f622190904ceccfff1afff021570566eb
Parent: e2be2df5c0760e2b6a7870c88ad486a23f5e4b01
Author: Jeremy Harris <jgh146exb@???>
AuthorDate: Tue Feb 23 17:32:04 2021 +0000
Committer: Jeremy Harris <jgh146exb@???>
CommitDate: Tue Feb 23 17:32:04 2021 +0000
Bulid: fix DISABLE_PIPE_CONNECT build. Bug 270333
---
src/src/transports/smtp.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/src/transports/smtp.c b/src/src/transports/smtp.c
index 7ad2a89..95fa6da 100644
--- a/src/src/transports/smtp.c
+++ b/src/src/transports/smtp.c
@@ -969,7 +969,7 @@ fail:
(void) smtp_discard_responses(sx, sx->conn_args.ob, *countp);
return rc;
}
-#endif
+#endif /*!DISABLE_PIPE_CONNECT*/
/*************************************************
@@ -1500,7 +1500,9 @@ if ( sx->esmtp
if (require_auth == OK && !f.smtp_authenticated)
{
+#ifndef DISABLE_PIPE_CONNECT
invalidate_ehlo_cache_entry(sx);
+#endif
set_errno_nohost(sx->addrlist, ERRNO_AUTHFAIL,
string_sprintf("authentication required but %s", fail_reason), DEFER,
FALSE, &sx->delivery_start);