From: Ian Holsman Date: Fri, 1 Feb 2002 04:07:48 +0000 (+0000) Subject: missed a '&' X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6a51a5efbe5fb8fb5d989137d28700c6d1ff4b73;p=apache missed a '&' git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93147 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index bf3dbb3919..4c8d26d2a5 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -188,7 +188,7 @@ static int proxy_trans(request_rec *r) len = alias_match(r->uri, ent[i].fake); if (len > 0) { - if ((ent[i].real[0] == '!' ) & ( ent[i].real[1] == 0 )) { + if ((ent[i].real[0] == '!' ) && ( ent[i].real[1] == 0 )) { return DECLINED; }