summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-09-03 12:29:57 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-09-03 12:29:57 +0000
commit0702150f53ae7a9afd61801a9e208aff07729024 (patch)
tree4469d570d2d92c1492a10392ffec1d6c560387e8 /ssl
parenta0ee08151526089b069556cb555ce1ed3d33436e (diff)
Make no-tlsext compile.
Diffstat (limited to 'ssl')
-rw-r--r--ssl/s23_clnt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssl/s23_clnt.c b/ssl/s23_clnt.c
index f90e107c9f..cc6c527f19 100644
--- a/ssl/s23_clnt.c
+++ b/ssl/s23_clnt.c
@@ -276,7 +276,7 @@ static int ssl23_client_hello(SSL *s)
{
version = SSL2_VERSION;
}
-
+#ifndef OPENSSL_NO_TLSEXT
if (version != SSL2_VERSION)
{
/* have to disable SSL 2.0 compatibility if we need TLS extensions */
@@ -291,6 +291,7 @@ static int ssl23_client_hello(SSL *s)
ssl2_compat = 0;
#endif
}
+#endif
buf=(unsigned char *)s->init_buf->data;
if (s->state == SSL23_ST_CW_CLNT_HELLO_A)