diff options
author | Stefan Eissing <icing@apache.org> | 2016-02-19 17:07:45 +0100 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2016-02-19 17:07:45 +0100 |
commit | e650f9b1d80c98f8fbef052622de5e82ef3d788e (patch) | |
tree | 121f4ee503d3cc220aa626ab7d883494142c8589 | |
parent | task pools have their h2_io pools as ancestors, some code cleanup (diff) | |
download | apache2-e650f9b1d80c98f8fbef052622de5e82ef3d788e.tar.xz apache2-e650f9b1d80c98f8fbef052622de5e82ef3d788e.zip |
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
-rw-r--r-- | server/mpm/simple/simple_io.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/mpm/simple/simple_io.c b/server/mpm/simple/simple_io.c index 6d98935e8b..83cbe04cc1 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) { |