You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mi...@apache.org on 2012/10/02 19:02:44 UTC

svn commit: r1393033 - /httpd/httpd/trunk/modules/filters/mod_include.c

Author: minfrin
Date: Tue Oct  2 17:02:44 2012
New Revision: 1393033

URL: http://svn.apache.org/viewvc?rev=1393033&view=rev
Log:
mod_include: When +Includes is not set and we disable mod_include, tell
the administrator where this happened.

Modified:
    httpd/httpd/trunk/modules/filters/mod_include.c

Modified: httpd/httpd/trunk/modules/filters/mod_include.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/filters/mod_include.c?rev=1393033&r1=1393032&r2=1393033&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/filters/mod_include.c (original)
+++ httpd/httpd/trunk/modules/filters/mod_include.c Tue Oct  2 17:02:44 2012
@@ -3819,7 +3819,7 @@ static apr_status_t includes_filter(ap_f
     if (!(ap_allow_options(r) & OPT_INCLUDES)) {
         ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r, APLOGNO(01374)
                       "mod_include: Options +Includes (or IncludesNoExec) "
-                      "wasn't set, INCLUDES filter removed");
+                      "wasn't set, INCLUDES filter removed: %s", r->uri);
         ap_remove_output_filter(f);
         return ap_pass_brigade(f->next, b);
     }