]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r1719967 from trunk:
authorJim Jagielski <jim@apache.org>
Tue, 29 Dec 2015 16:25:04 +0000 (16:25 +0000)
committerJim Jagielski <jim@apache.org>
Tue, 29 Dec 2015 16:25:04 +0000 (16:25 +0000)
mod_ssl: fix build with openssl < 0.9.8m (missing semicolon).
Reported by: Petr Gajdos <pgajdos suse.cz>
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

STATUS
modules/ssl/ssl_engine_io.c

diff --git a/STATUS b/STATUS
index 93b5c70eb4e7b353fa20cfd499e3b4115aa0dfeb..46f637e97e6ceb5d16b0ecff2259737f4c151190 100644 (file)
--- 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
index 424f4e5ef535bcadc17335bb1fb97bef7f3025a4..23ba739df7663bb0a03d5b9b3029b10601584795 100644 (file)
@@ -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