Fix no-ssl build
authorJeremy Harris <jgh146exb@wizmail.org>
Sun, 13 Oct 2019 19:23:07 +0000 (20:23 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Sun, 13 Oct 2019 19:23:07 +0000 (20:23 +0100)
Broken-by: d85cdeb5e5
src/src/exim.c

index 1bd49a0d4205efdb4a20b34ea2a26588306af5bb..084fa8db2bafc6df1d3223785ef4552371830bb7 100644 (file)
@@ -4678,19 +4678,21 @@ if (f.daemon_listen || f.inetd_wait_mode || queue_interval > 0)
       "mua_wrapper is set");
     }
 
+# ifndef DISABLE_TLS
   /* This also checks that the library linkage is working and we can call
   routines in it, so call even if tls_require_ciphers is unset */
     {
-#ifdef MEASURE_TIMING
+# ifdef MEASURE_TIMING
     struct timeval t0, diff;
     (void)gettimeofday(&t0, NULL);
-#endif
+# endif
     if (!tls_dropprivs_validate_require_cipher(FALSE))
       exit(1);
-#ifdef MEASURE_TIMING
+# ifdef MEASURE_TIMING
     report_time_since(&t0, US"validate_ciphers (delta)");
-#endif
+# endif
     }
+#endif
 
   daemon_go();
   }