summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2018-11-29 10:01:52 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2018-11-29 10:01:52 +0000
commit4312da48dab2e6510199a598ae15dbfe1787e3e2 (patch)
tree6ac44399d92656e8f2860e5b2e63981387140063
parenta7a1ad1447470b5bcc415d2fbdd368d585204516 (diff)
downloadexim4-4312da48dab2e6510199a598ae15dbfe1787e3e2.tar.gz
GnuTLS: fix build with older libraries
Broken-by: 6aac3239b4
-rw-r--r--src/src/tls-gnu.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/src/tls-gnu.c b/src/src/tls-gnu.c
index 25fe2f406..42d54a9c5 100644
--- a/src/src/tls-gnu.c
+++ b/src/src/tls-gnu.c
@@ -787,6 +787,9 @@ if ((rc = gnutls_x509_crt_init(&cert))) goto err;
where = US"generating pkey";
if ((rc = gnutls_x509_privkey_generate(pkey, GNUTLS_PK_RSA,
#ifdef SUPPORT_PARAM_TO_PK_BITS
+# ifndef GNUTLS_SEC_PARAM_MEDIUM
+# define GNUTLS_SEC_PARAM_MEDIUM GNUTLS_SEC_PARAM_HIGH
+# endif
gnutls_sec_param_to_pk_bits(GNUTLS_PK_RSA, GNUTLS_SEC_PARAM_MEDIUM),
#else
2048,