diff options
author | 2015-07-18 19:41:54 +0000 | |
---|---|---|
committer | 2015-07-18 19:41:54 +0000 | |
commit | 2664332e8b5fa99c9247ec1e92ee62af9d9233ec (patch) | |
tree | baa3c8d582fdb2d9e78ff004aea8150a4d80b054 /lib/libssl/src/ssl/s3_both.c | |
parent | Make {x86,i82489,x2apic,i386}_ipi return void (diff) | |
download | wireguard-openbsd-2664332e8b5fa99c9247ec1e92ee62af9d9233ec.tar.xz wireguard-openbsd-2664332e8b5fa99c9247ec1e92ee62af9d9233ec.zip |
Remove SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER workaround.
This was a hack to work around problems on IE 6 with SSLv3.
ok miod@ bcook@
Diffstat (limited to 'lib/libssl/src/ssl/s3_both.c')
-rw-r--r-- | lib/libssl/src/ssl/s3_both.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/libssl/src/ssl/s3_both.c b/lib/libssl/src/ssl/s3_both.c index a19ce743808..5a1d1e74433 100644 --- a/lib/libssl/src/ssl/s3_both.c +++ b/lib/libssl/src/ssl/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; |