You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sf...@apache.org on 2011/04/25 20:28:35 UTC

svn commit: r1096551 - /httpd/httpd/trunk/modules/mappers/mod_rewrite.c

Author: sf
Date: Mon Apr 25 18:28:34 2011
New Revision: 1096551

URL: http://svn.apache.org/viewvc?rev=1096551&view=rev
Log:
Report filename and line number in config warning

Modified:
    httpd/httpd/trunk/modules/mappers/mod_rewrite.c

Modified: httpd/httpd/trunk/modules/mappers/mod_rewrite.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/mappers/mod_rewrite.c?rev=1096551&r1=1096550&r2=1096551&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/mappers/mod_rewrite.c (original)
+++ httpd/httpd/trunk/modules/mappers/mod_rewrite.c Mon Apr 25 18:28:34 2011
@@ -3304,7 +3304,8 @@ static const char *cmd_rewritecond(cmd_p
         (newcond->flags & CONDFLAG_NOCASE)) {
         ap_log_error(APLOG_MARK, APLOG_WARNING, 0, cmd->server,
                      "RewriteCond: NoCase option for non-regex pattern '%s' "
-                     "is not supported and will be ignored.", a2);
+                     "is not supported and will be ignored. (%s:%d)", a2,
+		     cmd->directive->filename, cmd->directive->line_num);
         newcond->flags &= ~CONDFLAG_NOCASE;
     }