https://bz.apache.org/bugzilla/show_bug.cgi?id=59148

            Bug ID: 59148
           Summary: ssl_engine_io.c don't compile due to line without
                    semicolon at end
           Product: Apache httpd-2
           Version: 2.4.18
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Build
          Assignee: [email protected]
          Reporter: [email protected]

As line 220 of ssl_engine_io.c
need_flush = !SSL_is_init_finished(outctx->filter_ctx->pssl)
does not end with semicolon, it does not compile.
Feel free to apply patch follows:
--- modules/ssl/ssl_engine_io.c~    2015-11-19 19:55:25 +0000
+++ modules/ssl/ssl_engine_io.c     2016-03-09 02:46:45 +0000
@@ -217,7 +217,7 @@
      * 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

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to