From 535e5efaf41a73f64d2e0f9f2ae722c6cf8fc937 Mon Sep 17 00:00:00 2001 From: Yann Ylavic Date: Mon, 14 Dec 2015 17:25:07 +0000 Subject: [PATCH] mod_ssl: fix build with openssl < 0.9.8m (missing semicolon). Reported by: Petr Gajdos git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1719967 13f79535-47bb-0310-9956-ffa450edef68 --- modules/ssl/ssl_engine_io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ssl/ssl_engine_io.c b/modules/ssl/ssl_engine_io.c index 65d9cfe5fd..aaa5dce14b 100644 --- a/modules/ssl/ssl_engine_io.c +++ b/modules/ssl/ssl_engine_io.c @@ -226,7 +226,7 @@ static int bio_filter_out_write(BIO *bio, const char *in, int inl) * 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 -- 2.49.0