1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

missed a '&'

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93147 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ian Holsman
2002-02-01 04:07:48 +00:00
parent 908367ead0
commit bf6f47a76d

View File

@@ -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;
}