billbarker    2003/06/27 19:55:55

  Modified:    jk/native/common jk_uri_worker_map.c
  Log:
  Reverting to the httpd symbol.
  
  Having thought about this, I think that supporting UNC paths in mod_jk doesn't have 
a valid use case, and is only likely to cause problems on Windows.  Since this part of 
the code doesn't include the httpd headers, the symbol is always undefined unless 
someone explicitly adds it to their build.
  
  Revision  Changes    Path
  1.16      +2 -2      jakarta-tomcat-connectors/jk/native/common/jk_uri_worker_map.c
  
  Index: jk_uri_worker_map.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_uri_worker_map.c,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- jk_uri_worker_map.c       27 Jun 2003 02:54:17 -0000      1.15
  +++ jk_uri_worker_map.c       28 Jun 2003 02:55:55 -0000      1.16
  @@ -459,7 +459,7 @@
   
       s = d = name;
   
  -#if defined(WIN32)
  +#if defined(HAVE_UNC_PATHS) 
       /* Check for UNC names.  Leave leading two slashes. */
       if (s[0] == '/' && s[1] == '/')
           *d++ = *s++;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to