You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sl...@apache.org on 2004/09/02 16:53:29 UTC

cvs commit: httpd-2.0/modules/generators mod_autoindex.c

slive       2004/09/02 07:53:28

  Modified:    modules/generators mod_autoindex.c
  Log:
  "Rule" is pretty abstract in this case and seems to
  cause confusion for many people.
  
  Revision  Changes    Path
  1.135     +2 -1      httpd-2.0/modules/generators/mod_autoindex.c
  
  Index: mod_autoindex.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/generators/mod_autoindex.c,v
  retrieving revision 1.134
  retrieving revision 1.135
  diff -u -d -u -r1.134 -r1.135
  --- mod_autoindex.c	10 Jul 2004 02:25:56 -0000	1.134
  +++ mod_autoindex.c	2 Sep 2004 14:53:28 -0000	1.135
  @@ -2239,7 +2239,8 @@
       }
       else {
           ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
  -                      "Directory index forbidden by rule: %s", r->filename);
  +                      "Directory index forbidden by "
  +                      "Options directive: %s", r->filename);
           return HTTP_FORBIDDEN;
       }
   }