From: Mladen Turk Date: Thu, 9 Sep 2004 16:14:41 +0000 (+0000) Subject: Make sure that the status is not overwritten. X-Git-Tag: 2.1.1~321 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e609238644f3ff58db80e58ab40d3468cb55b37;p=thirdparty%2Fapache%2Fhttpd.git Make sure that the status is not overwritten. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105050 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index 85bd565e6d3..3207dd4e58e 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -1541,7 +1541,7 @@ PROXY_DECLARE(int) ap_proxy_acquire_connection(const char *proxy_function, proxy_function, worker->hostname); return HTTP_INTERNAL_SERVER_ERROR; } - worker->status = PROXY_WORKER_INITIALIZED; + worker->status |= PROXY_WORKER_INITIALIZED; } if (!PROXY_WORKER_IS_USABLE(worker)) {