From 7e609238644f3ff58db80e58ab40d3468cb55b37 Mon Sep 17 00:00:00 2001 From: Mladen Turk Date: Thu, 9 Sep 2004 16:14:41 +0000 Subject: [PATCH] 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 --- modules/proxy/proxy_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index 85bd565e6d..3207dd4e58 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)) { -- 2.50.1