You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Brian Behlendorf <br...@hyperreal.com> on 1996/08/06 07:24:50 UTC

cvs commit: apache/src http_request.c

brian       96/08/05 22:24:49

  Modified:    src       http_request.c
  Log:
  Reviewed by:	Brian Behlendorf
  Submitted by:	Garey Smiley
  
  The following patch fixes OS/2 drive name support ia 1.1.1.
  
  Revision  Changes    Path
  1.14      +5 -0      apache/src/http_request.c
  
  Index: http_request.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_request.c,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -C3 -r1.13 -r1.14
  *** http_request.c	1996/07/28 19:27:45	1.13
  --- http_request.c	1996/08/06 05:24:47	1.14
  ***************
  *** 224,230 ****
  --- 224,235 ----
         * for the moment, that's not worth the trouble.
         */
    
  + #ifdef __EMX__
  +     /* Add OS/2 drive name support */
  +     if ((test_filename[0] != '/') && (test_filename[1] != ':'))
  + #else
        if (test_filename[0] != '/')
  + #endif
        {
    /* fake filenames only match Directory sections */
            void *this_conf, *entry_config;