ben         97/11/23 10:10:05

  Modified:    src      ApacheCore.dsp CHANGES
               src/os/win32 util_win32.c
  Log:
  Only lowercase "real" path.
  
  Revision  Changes    Path
  1.14      +4 -0      apachen/src/ApacheCore.dsp
  
  Index: ApacheCore.dsp
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/ApacheCore.dsp,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- ApacheCore.dsp    1997/10/20 20:19:09     1.13
  +++ ApacheCore.dsp    1997/11/23 18:10:01     1.14
  @@ -105,6 +105,10 @@
   # End Source File
   # Begin Source File
   
  +SOURCE=.\buildmark.c
  +# End Source File
  +# Begin Source File
  +
   SOURCE=.\main\explain.c
   # End Source File
   # Begin Source File
  
  
  
  1.519     +2 -0      apachen/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/CHANGES,v
  retrieving revision 1.518
  retrieving revision 1.519
  diff -u -r1.518 -r1.519
  --- CHANGES   1997/11/22 02:04:41     1.518
  +++ CHANGES   1997/11/23 18:10:02     1.519
  @@ -1,5 +1,7 @@
   Changes with Apache 1.3b4
   
  +  *) WIN32: Only lowercase the part of the path that is real. [Ben Laurie]
  +
     *) Fix problems with timeouts in inetd mode and -X mode.  [Dean Gaudet]
   
     *) Fix the spurious "(0)unknown error: mmap_handler: mmap failed"
  
  
  
  1.4       +3 -1      apachen/src/os/win32/util_win32.c
  
  Index: util_win32.c
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/os/win32/util_win32.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- util_win32.c      1997/11/16 15:43:19     1.3
  +++ util_win32.c      1997/11/23 18:10:04     1.4
  @@ -52,7 +52,10 @@
       if(h == INVALID_HANDLE_VALUE)
        strcat(szCanon,szFilePart);
       else
  +    {
  +     strlwr(d.cFileName);
        strcat(szCanon,d.cFileName);
  +    }
   }
   
   API_EXPORT(char *) os_canonical_filename(pool *pPool,const char *szFile)
  @@ -60,7 +63,6 @@
       char buf[_MAX_PATH];
   
       sub_canonical_filename(buf,szFile);
  -    strlwr(buf);
       return pstrdup(pPool,buf);
   }
   
  
  
  

Reply via email to