diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2018-06-26 12:01:15 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2018-06-26 12:01:15 +0100 |
commit | 9377b957cdd0f1057db6efb7bccbde13e7d2a27a (patch) | |
tree | ec9b649f13330497ba3b395dde68dd85cbd44603 /src | |
parent | afdb5e9cf07fa49e26e128d8d5d2e3cab7a5fe42 (diff) |
Unbreak non-DANE build
Broken-by: afdb5e9cf0
Diffstat (limited to 'src')
-rw-r--r-- | src/src/expand.c | 7 |
1 files 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); |