From: Joshua Slive Date: Thu, 2 Sep 2004 14:53:28 +0000 (+0000) Subject: "Rule" is pretty abstract in this case and seems to X-Git-Tag: 2.1.1~374 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a6ff84521ed261e1ea2568b3627d3ab535901a3;p=thirdparty%2Fapache%2Fhttpd.git "Rule" is pretty abstract in this case and seems to cause confusion for many people. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104935 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/generators/mod_autoindex.c b/modules/generators/mod_autoindex.c index 2a34fa887a5..6c09d8a8994 100644 --- a/modules/generators/mod_autoindex.c +++ b/modules/generators/mod_autoindex.c @@ -2239,7 +2239,8 @@ static int handle_autoindex(request_rec *r) } 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; } }