From: Jim Jagielski Date: Tue, 29 Dec 2015 16:25:04 +0000 (+0000) Subject: Merge r1719967 from trunk: X-Git-Tag: 2.4.19~324 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93310ba419b3a0fdfb8eaf570e11e097d7906ac8;p=thirdparty%2Fapache%2Fhttpd.git Merge r1719967 from trunk: mod_ssl: fix build with openssl < 0.9.8m (missing semicolon). Reported by: Petr Gajdos Submitted by: ylavic Reviewed/backported by: jim git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1722179 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/STATUS b/STATUS index 93b5c70eb4e..46f637e97e6 100644 --- a/STATUS +++ b/STATUS @@ -112,11 +112,6 @@ RELEASE SHOWSTOPPERS: PATCHES ACCEPTED TO BACKPORT FROM TRUNK: [ start all new proposals below, under PATCHES PROPOSED. ] - *) mod_ssl: Fix missing semicolon for building with OpenSSL < 0.9.8m. - trunk patch: http://svn.apache.org/r1719967 - +1: ylavic, mrumph, wrowe - mrumph: Bug 58737 was also opened for this error. - *) Remove some useless return statements (+ some minor style changes) trunk patch: http://svn.apache.org/r1715567 http://svn.apache.org/r1715568 diff --git a/modules/ssl/ssl_engine_io.c b/modules/ssl/ssl_engine_io.c index 424f4e5ef53..23ba739df76 100644 --- a/modules/ssl/ssl_engine_io.c +++ b/modules/ssl/ssl_engine_io.c @@ -217,7 +217,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