From 9377b957cdd0f1057db6efb7bccbde13e7d2a27a Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Tue, 26 Jun 2018 12:01:15 +0100 Subject: [PATCH] Unbreak non-DANE build Broken-by: afdb5e9cf0 --- src/src/expand.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/src/expand.c b/src/src/expand.c index 596fb2404..a1a70c718 100644 --- a/src/src/expand.c +++ b/src/src/expand.c @@ -4981,10 +4981,13 @@ while (*s != 0) #ifdef SUPPORT_TLS if (do_tls) { - tls_support tls_dummy = {0}; + tls_support tls_dummy = {.sni=NULL}; uschar * errstr; - if (!(tls_ctx = tls_client_start(fd, &host, NULL, NULL, NULL, + if (!(tls_ctx = tls_client_start(fd, &host, NULL, NULL, +# ifdef SUPPORT_DANE + NULL, +# endif &tls_dummy, &errstr))) { expand_string_message = string_sprintf("TLS connect failed: %s", errstr); -- 2.30.2