diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-31 10:49:29 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-31 10:49:29 +0000 |
commit | 7d33e491ced254b4911a3c223bee944add414f9f (patch) | |
tree | 4f7010eb3632050d44210b8faa88b38d3a0654a1 /lib/libssl/s23_clnt.c | |
parent | bfd6ef1d500dac8515b5b20643749b6aa98a2660 (diff) |
TLS would not be entirely functional without extensions, so unifdef
OPENSSL_NO_TLSEXT.
ok tedu@
Diffstat (limited to 'lib/libssl/s23_clnt.c')
-rw-r--r-- | lib/libssl/s23_clnt.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libssl/s23_clnt.c b/lib/libssl/s23_clnt.c index 5361d5bea8f..16c30c083ab 100644 --- a/lib/libssl/s23_clnt.c +++ b/lib/libssl/s23_clnt.c @@ -431,7 +431,6 @@ ssl23_client_hello(SSL *s) /* Add the NULL method */ *(p++) = 0; -#ifndef OPENSSL_NO_TLSEXT /* TLS extensions*/ if (ssl_prepare_clienthello_tlsext(s) <= 0) { SSLerr(SSL_F_SSL23_CLIENT_HELLO, @@ -443,7 +442,6 @@ ssl23_client_hello(SSL *s) SSLerr(SSL_F_SSL23_CLIENT_HELLO, ERR_R_INTERNAL_ERROR); return -1; } -#endif l = p - d; |