summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2015-08-11 22:54:53 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2015-08-11 22:54:53 +0100
commit4fb7df6d044a39151e72346ac0d67ac09686f704 (patch)
tree366220fada97d8fefd5c71e1400325f33146cd8d /src
parent2ef7ed082481b2dccd3c2e0eae849b24bf0b172a (diff)
GnuTLS: avoid whining about OCSP when not requested by config
Diffstat (limited to 'src')
-rw-r--r--src/src/tls-gnu.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/src/tls-gnu.c b/src/src/tls-gnu.c
index 8aabc5c6c..fe180946b 100644
--- a/src/src/tls-gnu.c
+++ b/src/src/tls-gnu.c
@@ -176,7 +176,9 @@ static const char * const exim_default_gnutls_priority = "NORMAL";
static BOOL exim_gnutls_base_init_done = FALSE;
+#ifndef DISABLE_OCSP
static BOOL gnutls_buggy_ocsp = FALSE;
+#endif
/* ------------------------------------------------------------------------ */
@@ -1021,6 +1023,8 @@ return OK;
*************************************************/
+#ifndef DISABLE_OCSP
+
static BOOL
tls_is_buggy_ocsp(void)
{
@@ -1047,6 +1051,7 @@ if (maj == 3)
return FALSE;
}
+#endif
/* Called from both server and client code. In the case of a server, errors
@@ -1112,8 +1117,10 @@ if (!exim_gnutls_base_init_done)
}
#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;
}