From e481f9b90b164fd1053015d1c4e0a0d92076d7a8 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Fri, 15 May 2015 10:49:56 +0100 Subject: Remove support for OPENSSL_NO_TLSEXT Given the pervasive nature of TLS extensions it is inadvisable to run OpenSSL without support for them. It also means that maintaining the OPENSSL_NO_TLSEXT option within the code is very invasive (and probably not well tested). Therefore it is being removed. Reviewed-by: Rich Salz Reviewed-by: Richard Levitte --- ssl/ssl_txt.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'ssl/ssl_txt.c') diff --git a/ssl/ssl_txt.c b/ssl/ssl_txt.c index 0da2bb44b9..0f506f0fb9 100644 --- a/ssl/ssl_txt.c +++ b/ssl/ssl_txt.c @@ -182,7 +182,6 @@ int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x) if (BIO_printf(bp, "%s", x->srp_username ? x->srp_username : "None") <= 0) goto err; #endif -#ifndef OPENSSL_NO_TLSEXT if (x->tlsext_tick_lifetime_hint) { if (BIO_printf(bp, "\n TLS session ticket lifetime hint: %ld (seconds)", @@ -196,7 +195,6 @@ int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x) <= 0) goto err; } -#endif #ifndef OPENSSL_NO_COMP if (x->compress_meth != 0) { -- cgit v1.2.3