]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fixed missing struct member error introduced with r1092076.
authorGuenter Knauf <fuankg@apache.org>
Thu, 14 Apr 2011 13:05:48 +0000 (13:05 +0000)
committerGuenter Knauf <fuankg@apache.org>
Thu, 14 Apr 2011 13:05:48 +0000 (13:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1092212 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy_ajp.c

index a54e03ea64d7e2f241abc4e3e60ae27a6ab270bf..93dfefc83f0d2ed97d8732a1a7a254b713e4f638 100644 (file)
@@ -341,7 +341,7 @@ static int ap_proxy_ajp_request(apr_pool_t *p, request_rec *r,
          * we assume it is a request that cause a back-end timeout,
          * but doesn't affect the whole worker.
          */
-        if (status == APR_TIMEUP && conn->worker->ping_timeout_set) {
+        if (status == APR_TIMEUP && conn->worker->s->ping_timeout_set) {
             return HTTP_GATEWAY_TIME_OUT;
         }