From: Yann Ylavic Date: Mon, 5 Oct 2015 12:01:42 +0000 (+0000) Subject: Follow up to r1706669: fix compile error (unknown sbh). X-Git-Tag: 2.5.0-alpha~2762 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e9c69098753923ec044179ad3d86be8326fab6e9;p=thirdparty%2Fapache%2Fhttpd.git Follow up to r1706669: fix compile error (unknown sbh). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1706815 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/motorz/motorz.c b/server/mpm/motorz/motorz.c index a10ead0f59c..1e69ebd0ee9 100644 --- a/server/mpm/motorz/motorz.c +++ b/server/mpm/motorz/motorz.c @@ -362,7 +362,8 @@ static apr_status_t motorz_io_process(motorz_conn_t *scon) apr_hash_index_t *rindex; apr_status_t rv = APR_SUCCESS; int data_in_output_filters = 0; - ap_update_child_status_from_conn(sbh, SERVER_BUSY_WRITE, c); + + ap_update_child_status_from_conn(scon->sbh, SERVER_BUSY_WRITE, c); rindex = apr_hash_first(NULL, c->filters); while (rindex) {