Fix no-ssl build
authorJeremy Harris <jgh146exb@wizmail.org>
Fri, 30 May 2014 11:58:26 +0000 (12:58 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Fri, 30 May 2014 11:58:26 +0000 (12:58 +0100)
src/src/readconf.c
src/src/transports/smtp.c

index 4db0cbbe5e34cb6eadaeadc55e26eadf0cb84942..adb538c5999822775e89d88603f06967234110d7 100644 (file)
@@ -3374,12 +3374,12 @@ if (openssl_options != NULL)
       "openssl_options parse error: %s", openssl_options);
 # endif
   }
-#endif
 
 if (gnutls_require_kx || gnutls_require_mac || gnutls_require_proto)
   log_write(0, LOG_MAIN, "WARNING: main options"
       " gnutls_require_kx, gnutls_require_mac and gnutls_require_protocols"
       " are obsolete\n");
+#endif /*SUPPORT_TLS*/
 }
 
 
index 88f796e338be286c0400647c3431af6ddc9725fd..33c91a67ab055d28098580c46ad83c38cb455aa4 100644 (file)
@@ -401,12 +401,14 @@ for them, but do not do any lookups at this time. */
 
 host_build_hostlist(&(ob->fallback_hostlist), ob->fallback_hosts, FALSE);
 
+#ifdef SUPPORT_TLS
 if (  ob->gnutls_require_kx
    || ob->gnutls_require_mac
    || ob->gnutls_require_proto)
   log_write(0, LOG_MAIN, "WARNING: smtp transport options"
     " gnutls_require_kx, gnutls_require_mac and gnutls_require_protocols"
     " are obsolete\n");
+#endif
 }