summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2019-04-25 19:13:31 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2019-04-25 19:13:31 +0100
commitb9c6f63cd56eaf62303792630a1fa5657499e7a6 (patch)
treeed1940bdae3168528c7de7a1b937e4a62253c1be /src
parent6010e708237477b8fab5fbed0a972a937d89fc56 (diff)
Fix build with older GnuTLS
Diffstat (limited to 'src')
-rw-r--r--src/src/tls-gnu.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/src/tls-gnu.c b/src/src/tls-gnu.c
index abf2c25b8..e08381344 100644
--- a/src/src/tls-gnu.c
+++ b/src/src/tls-gnu.c
@@ -1516,7 +1516,11 @@ state->peerdn = NULL;
cipher = gnutls_cipher_get(state->session);
protocol = gnutls_protocol_get_version(state->session);
mac = gnutls_mac_get(state->session);
-kx = protocol < GNUTLS_TLS1_3 ? gnutls_kx_get(state->session) : 0;
+kx =
+#ifdef GNUTLS_TLS1_3
+ protocol >= GNUTLS_TLS1_3 ? 0 :
+#endif
+ gnutls_kx_get(state->session);
old_pool = store_pool;
{