From e35a1a09d2c01eba1c30da8ce10ac604e47c7cd4 Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Thu, 14 Apr 2011 13:05:48 +0000 Subject: [PATCH] Fixed missing struct member error introduced with r1092076. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1092212 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/mod_proxy_ajp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/proxy/mod_proxy_ajp.c b/modules/proxy/mod_proxy_ajp.c index a54e03ea64d..93dfefc83f0 100644 --- a/modules/proxy/mod_proxy_ajp.c +++ b/modules/proxy/mod_proxy_ajp.c @@ -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; } -- 2.47.2