ben         97/08/17 06:42:26

  Modified:    src/core http_protocol.c
  Log:
  Don't force lowercase on Win32.
  PR: 997
  
  Revision  Changes    Path
  1.153     +2 -1      apachen/src/core/http_protocol.c
  
  Index: http_protocol.c
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/core/http_protocol.c,v
  retrieving revision 1.152
  retrieving revision 1.153
  diff -u -r1.152 -r1.153
  --- http_protocol.c   1997/08/15 17:59:50     1.152
  +++ http_protocol.c   1997/08/17 13:42:25     1.153
  @@ -545,7 +545,8 @@
           if (r->uri[loop] == '\\')
               r->uri[loop] = '/';
       };
  -    
  +#endif
  +#ifdef __EMX__
       /* Fix OS/2 HPFS filename case problem. */
       r->uri = strlwr(r->uri);
   #endif
  
  
  

Reply via email to