From d6131a7d9286b507c2a364a56630902d1ba7194c Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Wed, 9 May 2012 18:50:08 +0100 Subject: [PATCH] Fix non-TLS build. Detection and fix by Todd Lyons. --- src/src/transports/smtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/src/transports/smtp.c b/src/src/transports/smtp.c index 4db67f871..6ec94d5da 100644 --- a/src/src/transports/smtp.c +++ b/src/src/transports/smtp.c @@ -895,7 +895,7 @@ outblock.authenticating = FALSE; tls_bits = 0; tls_cipher = NULL; tls_peerdn = NULL; -#ifndef USE_GNUTLS +#if defined(SUPPORT_TLS) && !defined(USE_GNUTLS) tls_sni = NULL; #endif -- 2.30.2