You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@locus.apache.org on 2000/09/22 20:28:01 UTC

cvs commit: apache-1.3/src/modules/standard mod_userdir.c

wrowe       00/09/22 11:27:59

  Modified:    src/modules/standard mod_userdir.c
  Log:
    Fix a closing endif comment, and point out a NETWARE concern.
  
  Revision  Changes    Path
  1.41      +3 -1      apache-1.3/src/modules/standard/mod_userdir.c
  
  Index: mod_userdir.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/modules/standard/mod_userdir.c,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- mod_userdir.c	1999/10/21 20:45:46	1.40
  +++ mod_userdir.c	2000/09/22 18:27:57	1.41
  @@ -268,11 +268,13 @@
                    * redirected to a URL or to a file on some drive. Since I
                    * know of no protocols that are a single letter, if the : is
                    * the second character, I will assume a file was specified
  +                 *
  +                 * Still no good for NETWARE, since : is embedded (sys:/home)
                    */
                   if (strchr(x + 2, ':'))
   #else
                   if (strchr(x, ':'))
  -#endif                          /* WIN32 */
  +#endif /* def HAVE_DRIVE_LETTERS */
   		{
                       redirect = ap_pstrcat(r->pool, x, w, userdir, dname, NULL);
                       ap_table_setn(r->headers_out, "Location", redirect);