diff options
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.c | 17 |
1 files changed, 17 insertions, 0 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 new file mode 100644 index 000000000000..9f067f84d896 --- /dev/null +++ b/www/apache24/files/patch-modules_ssl_ssl__engine__io.c @@ -0,0 +1,17 @@ +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 |