You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2015/10/07 12:42:11 UTC

svn commit: r1707231 - /httpd/httpd/trunk/modules/ssl/ssl_engine_io.c

Author: ylavic
Date: Wed Oct  7 10:42:11 2015
New Revision: 1707231

URL: http://svn.apache.org/viewvc?rev=1707231&view=rev
Log:
mod_ssl: follow up to r1707230: fix (inverted) logic for SSL_in_connect_init().

Modified:
    httpd/httpd/trunk/modules/ssl/ssl_engine_io.c

Modified: httpd/httpd/trunk/modules/ssl/ssl_engine_io.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/ssl_engine_io.c?rev=1707231&r1=1707230&r2=1707231&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_io.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_io.c Wed Oct  7 10:42:11 2015
@@ -228,7 +228,7 @@ static int bio_filter_out_write(BIO *bio
 #if OPENSSL_VERSION_NUMBER < 0x0009080df
      need_flush = !SSL_is_init_finished(outctx->filter_ctx->pssl)
 #else
-     need_flush = !SSL_in_connect_init(outctx->filter_ctx->pssl);
+     need_flush = SSL_in_connect_init(outctx->filter_ctx->pssl);
 #endif
     if (need_flush) {
         e = apr_bucket_flush_create(outctx->bb->bucket_alloc);