Petr Gajdos
f355b09382
+ httpd-2.4.18-missing-semicolon.patch OBS-URL: https://build.opensuse.org/package/show/Apache/apache2?expand=0&rev=471
14 lines
590 B
Diff
14 lines
590 B
Diff
Index: modules/ssl/ssl_engine_io.c
|
|
===================================================================
|
|
--- modules/ssl/ssl_engine_io.c.orig 2015-11-19 20:55:25.000000000 +0100
|
|
+++ modules/ssl/ssl_engine_io.c 2015-12-14 17:36:04.787124154 +0100
|
|
@@ -217,7 +217,7 @@
|
|
* 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
|