You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ia...@apache.org on 2002/02/01 05:07:48 UTC

cvs commit: httpd-2.0/modules/proxy mod_proxy.c

ianh        02/01/31 20:07:48

  Modified:    modules/proxy mod_proxy.c
  Log:
  missed a '&'
  
  Revision  Changes    Path
  1.70      +1 -1      httpd-2.0/modules/proxy/mod_proxy.c
  
  Index: mod_proxy.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/proxy/mod_proxy.c,v
  retrieving revision 1.69
  retrieving revision 1.70
  diff -u -r1.69 -r1.70
  --- mod_proxy.c	30 Jan 2002 18:46:56 -0000	1.69
  +++ mod_proxy.c	1 Feb 2002 04:07:48 -0000	1.70
  @@ -188,7 +188,7 @@
           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;
              }