summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2019-05-02 18:02:19 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2019-05-02 18:02:19 +0100
commitfb34a7cb31f66ad7311687840214a92e3737f10b (patch)
tree0566559ac93a226ffb7c26ab2aa0de02036e7571
parentb1a4f2342be3e09981033bb5a1718ad909f86ad7 (diff)
Fix build on older GnuTLS
Broken-buy: b10c87b38c
-rw-r--r--src/src/tls-gnu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/src/tls-gnu.c b/src/src/tls-gnu.c
index 8bd5aeda4..03002c704 100644
--- a/src/src/tls-gnu.c
+++ b/src/src/tls-gnu.c
@@ -2475,6 +2475,7 @@ but this flag is not set until the second. TLS 1.3 it's the other way about.
Keep both calls as the session data cannot be extracted before handshake
completes. */
+#ifdef GNUTLS_SFLAGS_SESSION_TICKET
if (gnutls_session_get_flags(session) & GNUTLS_SFLAGS_SESSION_TICKET)
{
gnutls_datum_t tkt;
@@ -2509,6 +2510,7 @@ if (gnutls_session_get_flags(session) & GNUTLS_SFLAGS_SESSION_TICKET)
else DEBUG(D_tls)
debug_printf("extract session data: %s\n", US gnutls_strerror(rc));
}
+#endif
}