From: Stefan Eissing Date: Fri, 19 Feb 2016 16:07:45 +0000 (+0000) Subject: making complete_connection addition compile, hopefully as intended X-Git-Tag: 2.5.0-alpha~2037 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e650f9b1d80c98f8fbef052622de5e82ef3d788e;p=thirdparty%2Fapache%2Fhttpd.git making complete_connection addition compile, hopefully as intended git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1731264 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/simple/simple_io.c b/server/mpm/simple/simple_io.c index 6d98935e8b6..83cbe04cc11 100644 --- a/server/mpm/simple/simple_io.c +++ b/server/mpm/simple/simple_io.c @@ -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(simple_conn_t * scon) 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) {