You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bj...@hyperreal.org on 1999/07/03 09:59:50 UTC

cvs commit: apache-1.3/src/main http_core.c http_protocol.c

bjh         99/07/03 00:59:50

  Modified:    src/main http_core.c http_protocol.c
  Log:
  These 'OS/2 HPFS filename case problem' fixes are now handled by
  ap_os_canonical_filename() in a better way.
  
  Revision  Changes    Path
  1.270     +0 -4      apache-1.3/src/main/http_core.c
  
  Index: http_core.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/main/http_core.c,v
  retrieving revision 1.269
  retrieving revision 1.270
  diff -u -r1.269 -r1.270
  --- http_core.c	1999/06/29 15:13:12	1.269
  +++ http_core.c	1999/07/03 07:59:48	1.270
  @@ -1409,10 +1409,6 @@
       *endp = '\0';
   
       cmd->path = ap_getword_conf(cmd->pool, &arg);
  -#ifdef OS2
  -    /* Fix OS/2 HPFS filename case problem. */
  -    cmd->path = strlwr(cmd->path);
  -#endif    
       cmd->override = OR_ALL|ACCESS_CONF;
   
       if (thiscmd->cmd_data) { /* <DirectoryMatch> */
  
  
  
  1.271     +0 -4      apache-1.3/src/main/http_protocol.c
  
  Index: http_protocol.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/main/http_protocol.c,v
  retrieving revision 1.270
  retrieving revision 1.271
  diff -u -r1.270 -r1.271
  --- http_protocol.c	1999/06/05 15:48:09	1.270
  +++ http_protocol.c	1999/07/03 07:59:49	1.271
  @@ -749,10 +749,6 @@
   
   	    for (x = r->uri; (x = strchr(x, '\\')) != NULL; )
   		*x = '/';
  -#ifndef WIN32   /* for OS/2 only: */
  -	    /* Fix OS/2 HPFS filename case problem. */
  -	    ap_str_tolower(r->uri);
  -#endif
   	}
   #endif  /* OS2 || WIN32 */
       }