From: Ian Holsman Date: Fri, 1 Feb 2002 04:07:48 +0000 (+0000) Subject: missed a '&' X-Git-Tag: 2.0.32~166 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bf6f47a76dd6870b0573a1e77d1c7e990a3fdc7f;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; }