dgaudet     97/10/04 19:04:46

  Modified:    src/main http_request.c
  Log:
  Fix wildcarding of special directories like "proxy:"
  
  Reviewed by:  Jim Jagielski
  
  Revision  Changes    Path
  1.86      +1 -1      apachen/src/main/http_request.c
  
  Index: http_request.c
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/main/http_request.c,v
  retrieving revision 1.85
  retrieving revision 1.86
  diff -u -r1.85 -r1.86
  --- http_request.c    1997/09/14 12:16:55     1.85
  +++ http_request.c    1997/10/05 02:04:44     1.86
  @@ -324,7 +324,7 @@
                       this_conf = entry_config;
               }
               else if (entry_core->d_is_fnmatch) {
  -                if (!fnmatch(entry_dir, test_filename, FNM_PATHNAME))
  +                if (!fnmatch(entry_dir, test_filename, 0))
                       this_conf = entry_config;
               }
               else if (!strncmp(test_filename, entry_dir, strlen(entry_dir)))
  
  
  

Reply via email to