From 7f2d6dc6af99690299b2a423c25d0d7240957c6f Mon Sep 17 00:00:00 2001 From: doug <> Date: Sat, 18 Jul 2015 19:41:54 +0000 Subject: Remove SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER workaround. This was a hack to work around problems on IE 6 with SSLv3. ok miod@ bcook@ --- src/lib/libssl/s3_both.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/lib/libssl/s3_both.c') diff --git a/src/lib/libssl/s3_both.c b/src/lib/libssl/s3_both.c index a19ce74380..5a1d1e7443 100644 --- a/src/lib/libssl/s3_both.c +++ b/src/lib/libssl/s3_both.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s3_both.c,v 1.42 2015/07/15 21:52:02 beck Exp $ */ +/* $OpenBSD: s3_both.c,v 1.43 2015/07/18 19:41:54 doug Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -647,10 +647,6 @@ ssl3_setup_read_buffer(SSL *s) if (s->s3->rbuf.buf == NULL) { len = SSL3_RT_MAX_PLAIN_LENGTH + SSL3_RT_MAX_ENCRYPTED_OVERHEAD + headerlen + align; - if (s->options & SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER) { - s->s3->init_extra = 1; - len += SSL3_RT_MAX_EXTRA; - } if ((p = malloc(len)) == NULL) goto err; s->s3->rbuf.buf = p; -- cgit v1.2.3-55-g6feb