From fb34a7cb31f66ad7311687840214a92e3737f10b Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Thu, 2 May 2019 18:02:19 +0100 Subject: [PATCH] Fix build on older GnuTLS Broken-buy: b10c87b38c --- src/src/tls-gnu.c | 2 ++ 1 file changed, 2 insertions(+) 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 } -- 2.25.1