summaryrefslogtreecommitdiff
path: root/www/apache24/files/patch-modules_ssl_ssl__engine__io.c
diff options
context:
space:
mode:
authorOlli Hauer <ohauer@FreeBSD.org>2016-04-11 14:46:12 +0000
committerOlli Hauer <ohauer@FreeBSD.org>2016-04-11 14:46:12 +0000
commit7b11121421f8170ef67288a475bbfdec8fbc5aa5 (patch)
treed9c2ade2a570141b75b3e68c2214c6a4769c6eae /www/apache24/files/patch-modules_ssl_ssl__engine__io.c
parentdevel/tcloo: remove leftover of my testing (diff)
- update to 2.4.20
- use ${OPTION}_IMPLIES and remove some IGNORES - turn on proxy_html and xml2enc as default [1] [1] Often requested by users. The modules are not enabled in the default configuration. Full changelog for apache version 2.4.19/2.4.20: http://www.apache.org/dist/httpd/CHANGES_2.4.20 Note: Apache httpd 2.4.19 was not released. MFH: 2016Q2
Diffstat (limited to 'www/apache24/files/patch-modules_ssl_ssl__engine__io.c')
-rw-r--r--www/apache24/files/patch-modules_ssl_ssl__engine__io.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/www/apache24/files/patch-modules_ssl_ssl__engine__io.c b/www/apache24/files/patch-modules_ssl_ssl__engine__io.c
deleted file mode 100644
index 9f067f84d896..000000000000
--- a/www/apache24/files/patch-modules_ssl_ssl__engine__io.c
+++ /dev/null
@@ -1,17 +0,0 @@
-Backport openssl 0.9.8x patch:
-http://svn.apache.org/r1719967
-
-For discussion see:
-http://marc.info/?t=145011265700003&r=1&w=2
-===============================================================
---- modules/ssl/ssl_engine_io.c.orig 2015-11-19 19:55:25 UTC
-+++ modules/ssl/ssl_engine_io.c
-@@ -217,7 +217,7 @@ static int bio_filter_out_write(BIO *bio
- * so limit the performance impact to handshake time.
- */
- #if OPENSSL_VERSION_NUMBER < 0x0009080df
-- need_flush = !SSL_is_init_finished(outctx->filter_ctx->pssl)
-+ need_flush = !SSL_is_init_finished(outctx->filter_ctx->pssl);
- #else
- need_flush = SSL_in_connect_init(outctx->filter_ctx->pssl);
- #endif