From: Jeremy Harris Date: Tue, 26 Jun 2018 11:01:15 +0000 (+0100) Subject: Unbreak non-DANE build X-Git-Tag: exim-4.92-RC1~158 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/9377b957cdd0f1057db6efb7bccbde13e7d2a27a Unbreak non-DANE build Broken-by: afdb5e9cf0 --- 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);