summaryrefslogtreecommitdiff
path: root/www/apache24/files/patch-modules_ssl_ssl__engine__io.c
blob: 9f067f84d8967ee2a16a2df0aae3ebc21f1f90b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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