diff options
Diffstat (limited to 'modules/http')
-rw-r--r-- | modules/http/http_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/http/http_core.c b/modules/http/http_core.c index 5a3c7055e9..ae97d314c5 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -135,7 +135,7 @@ static int ap_process_http_async_connection(conn_rec *c) AP_DEBUG_ASSERT(cs->state == CONN_STATE_READ_REQUEST_LINE); while (cs->state == CONN_STATE_READ_REQUEST_LINE) { - ap_update_child_status(c->sbh, SERVER_BUSY_READ, NULL); + ap_update_child_status_from_conn(c->sbh, SERVER_BUSY_READ, c); if ((r = ap_read_request(c))) { @@ -182,7 +182,7 @@ static int ap_process_http_sync_connection(conn_rec *c) * until no requests are left or we decide to close. */ - ap_update_child_status(c->sbh, SERVER_BUSY_READ, NULL); + ap_update_child_status_from_conn(c->sbh, SERVER_BUSY_READ, c); while ((r = ap_read_request(c)) != NULL) { c->keepalive = AP_CONN_UNKNOWN; |