static BOOL exim_gnutls_base_init_done = FALSE;
+#ifndef DISABLE_OCSP
static BOOL gnutls_buggy_ocsp = FALSE;
+#endif
/* ------------------------------------------------------------------------ */
*************************************************/
+#ifndef DISABLE_OCSP
+
static BOOL
tls_is_buggy_ocsp(void)
{
return FALSE;
}
+#endif
/* Called from both server and client code. In the case of a server, errors
}
#endif
- if ((gnutls_buggy_ocsp = tls_is_buggy_ocsp()))
+#ifndef DISABLE_OCSP
+ if (tls_ocsp_file && (gnutls_buggy_ocsp = tls_is_buggy_ocsp()))
log_write(0, LOG_MAIN, "OCSP unusable with this GnuTLS library version");
+#endif
exim_gnutls_base_init_done = TRUE;
}