Fix build on older GnuTLS
[exim.git] / src / src / tls-gnu.c
index 8bd5aeda41697e58ba36582b25b9d91d9d0d8f24..03002c704522199ee0e37291f729c94b9efb98e9 100644 (file)
@@ -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
 }