View | Details | Raw Unified | Return to bug 233517
Collapse All | Expand All

(-)files/patch-src_tls_tls__server.c (+9 lines)
Lines 18-23 Link Here
18
 
18
 
19
     /*
19
     /*
20
      * Initialize the OpenSSL library by the book! To start with, we must
20
      * Initialize the OpenSSL library by the book! To start with, we must
21
@@ -486,7 +486,7 @@
22
      * OpenSSL 0.9.8h, while SSL_NO_TICKET was added in 0.9.8f.
23
      */
24
 #ifdef SSL_OP_NO_TICKET
25
-#if !defined(OPENSSL_NO_TLSEXT) && OPENSSL_VERSION_NUMBER >= 0x0090808fL
26
+#if !defined(OPENSSL_NO_TLSEXT) && OPENSSL_VERSION_NUMBER >= 0x0090808fL && !defined(LIBRESSL_VERSION_NUMBER)
27
     ticketable = (*var_tls_tkt_cipher && scache_timeout > 0
28
 		  && !(off & SSL_OP_NO_TICKET));
29
     if (ticketable) {
21
@@ -588,7 +588,7 @@ TLS_APPL_STATE *tls_server_init(const TL
30
@@ -588,7 +588,7 @@ TLS_APPL_STATE *tls_server_init(const TL
22
     /*
31
     /*
23
      * 2015-12-05: Ephemeral RSA removed from OpenSSL 1.1.0-dev
32
      * 2015-12-05: Ephemeral RSA removed from OpenSSL 1.1.0-dev

Return to bug 233517