Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 670725
Collapse All | Expand All

(-)a/src/tls/tls_server.c (-1 / +1 lines)
Lines 486-492 Link Here
486
     * OpenSSL 0.9.8h, while SSL_NO_TICKET was added in 0.9.8f.
486
     * OpenSSL 0.9.8h, while SSL_NO_TICKET was added in 0.9.8f.
487
     */
487
     */
488
#ifdef SSL_OP_NO_TICKET
488
#ifdef SSL_OP_NO_TICKET
489
#if !defined(OPENSSL_NO_TLSEXT) && OPENSSL_VERSION_NUMBER >= 0x0090808fL
489
#if !defined(OPENSSL_NO_TLSEXT) && OPENSSL_VERSION_NUMBER >= 0x0090808fL && !defined(LIBRESSL_VERSION_NUMBER)
490
    ticketable = (*var_tls_tkt_cipher && scache_timeout > 0
490
    ticketable = (*var_tls_tkt_cipher && scache_timeout > 0
491
		  && !(off & SSL_OP_NO_TICKET));
491
		  && !(off & SSL_OP_NO_TICKET));
492
    if (ticketable) {
492
    if (ticketable) {

Return to bug 670725