TLS: move from SUPPORT_TLS to DISABLE_TLS macro for the build
[exim.git] / src / src / macros.h
index e3f1f4c281b77e086ab18fd4db79e1b8adc308e8..4189b6bd7e457208581e05dfbe06ac972b9a1093 100644 (file)
@@ -84,7 +84,7 @@ as unsigned. */
 /* When built with TLS support, the act of flushing SMTP output becomes
 a no-op once an SSL session is in progress. */
 
-#ifdef SUPPORT_TLS
+#ifndef DISABLE_TLS
 #define mac_smtp_fflush() if (tls_in.active.sock < 0) fflush(smtp_out);
 #else
 #define mac_smtp_fflush() fflush(smtp_out);