From: Yann Ylavic Date: Mon, 14 Dec 2015 17:25:07 +0000 (+0000) Subject: mod_ssl: fix build with openssl < 0.9.8m (missing semicolon). X-Git-Tag: 2.5.0-alpha~2532 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=535e5efaf41a73f64d2e0f9f2ae722c6cf8fc937;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/modules/ssl/ssl_engine_io.c b/modules/ssl/ssl_engine_io.c index 65d9cfe5fd4..aaa5dce14b2 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