Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-08-09 13:35:57 +0400
committerRichard Levitte <levitte@openssl.org>2003-08-09 13:35:57 +0400
commit980645e55e4816878aab9353285dc9e39a793fc0 (patch)
tree8ee73dddd68b055cf7595a25a7e28327663516ab /ssl
parent9d55e76dd6924f00f4a73b0d05d2a04bc9ce8591 (diff)
Recent changes from 0.9.6-stable.
Diffstat (limited to 'ssl')
-rw-r--r--ssl/s3_srvr.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ssl/s3_srvr.c b/ssl/s3_srvr.c
index 3f4818e888..bd9f7dc209 100644
--- a/ssl/s3_srvr.c
+++ b/ssl/s3_srvr.c
@@ -828,6 +828,9 @@ static int ssl3_get_client_hello(SSL *s)
}
/* TLS does not mind if there is extra stuff */
+#if 0 /* SSL 3.0 does not mind either, so we should disable this test
+ * (was enabled in 0.9.6d through 0.9.6j and 0.9.7 through 0.9.7b,
+ * in earlier SSLeay/OpenSSL releases this test existed but was buggy) */
if (s->version == SSL3_VERSION)
{
if (p < (d+n))
@@ -839,6 +842,7 @@ static int ssl3_get_client_hello(SSL *s)
goto f_err;
}
}
+#endif
/* Given s->session->ciphers and ssl_get_ciphers_by_id(s), we must
* pick a cipher */