You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@httpd.apache.org by bu...@apache.org on 2016/03/09 03:47:05 UTC

[Bug 59148] New: ssl_engine_io.c don't compile due to line without semicolon at end

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: bugs@httpd.apache.org
          Reporter: y-iida@secom.co.jp

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: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org


[Bug 59148] ssl_engine_io.c don't compile due to line without semicolon at end

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=59148

Eric Covener <co...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #1 from Eric Covener <co...@gmail.com> ---


*** This bug has been marked as a duplicate of bug 58737 ***

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

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org