You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Alexei Kosut <ak...@hyperreal.org> on 1997/09/11 21:07:54 UTC

cvs commit: apachen/src/main http_request.c

akosut      97/09/11 12:07:53

  Modified:    src/main http_request.c
  Log:
  entry_dir is the string, not entry_core... Make Windows compile.
  
  Revision  Changes    Path
  1.83      +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.82
  retrieving revision 1.83
  diff -u -r1.82 -r1.83
  --- http_request.c	1997/09/11 18:46:45	1.82
  +++ http_request.c	1997/09/11 19:07:51	1.83
  @@ -384,7 +384,7 @@
   
   	    if (entry_core->r
   #if defined(__EMX__) || defined(WIN32)
  -		|| (entry_core[0] != '/' && entry_core[1] != ':')
  +		|| (entry_dir[0] != '/' && entry_dir[1] != ':')
   #else
   		|| entry_dir[0] != '/'
   #endif