]> granicus.if.org Git - apache/commitdiff
mod_ssl: fix build with openssl < 0.9.8m (missing semicolon).
authorYann Ylavic <ylavic@apache.org>
Mon, 14 Dec 2015 17:25:07 +0000 (17:25 +0000)
committerYann Ylavic <ylavic@apache.org>
Mon, 14 Dec 2015 17:25:07 +0000 (17:25 +0000)
Reported by: Petr Gajdos <pgajdos suse.cz>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1719967 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_io.c

index 65d9cfe5fd4b6e04807e15100cad33ecd97cfdd4..aaa5dce14b2d0e1913aaff9cfe2f05a062e02085 100644 (file)
@@ -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