You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2016/02/19 17:07:46 UTC

svn commit: r1731264 - /httpd/httpd/trunk/server/mpm/simple/simple_io.c

Author: icing
Date: Fri Feb 19 16:07:45 2016
New Revision: 1731264

URL: http://svn.apache.org/viewvc?rev=1731264&view=rev
Log:
making complete_connection addition compile, hopefully as intended

Modified:
    httpd/httpd/trunk/server/mpm/simple/simple_io.c

Modified: httpd/httpd/trunk/server/mpm/simple/simple_io.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/simple/simple_io.c?rev=1731264&r1=1731263&r2=1731264&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm/simple/simple_io.c (original)
+++ httpd/httpd/trunk/server/mpm/simple/simple_io.c Fri Feb 19 16:07:45 2016
@@ -14,6 +14,7 @@
  * limitations under the License.
  */
 
+#include "mpm_common.h"
 #include "httpd.h"
 #include "http_log.h"
 #include "ap_listen.h"
@@ -94,7 +95,7 @@ static apr_status_t simple_io_process(si
         if (scon->cs.state == CONN_STATE_WRITE_COMPLETION) {
             int not_complete_yet;
 
-            ap_update_child_status_from_conn(sbh, SERVER_BUSY_WRITE, c);
+            ap_update_child_status_from_conn(c->sbh, SERVER_BUSY_WRITE, c);
             not_complete_yet = ap_run_complete_connection(c);
 
             if (not_complete_yet > OK) {