From: Jeff Trawick Date: Thu, 22 May 2014 20:29:29 +0000 (+0000) Subject: the fixup hook should log (what is expected to be) local X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=215cceacc0fa9472d738a34434162b99b46616fa;p=thirdparty%2Fapache%2Fhttpd.git the fixup hook should log (what is expected to be) local path just like the translate name hook, for a small hint when debugging 400 errors set just below git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1596963 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index 7d024961f9c..cbab2440ad7 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -5016,6 +5016,8 @@ static int hook_fixup(request_rec *r) r->filename = apr_pstrdup(r->pool, r->filename+12); } + rewritelog((r, 2, NULL, "local path result: %s", r->filename)); + /* the filename must be either an absolute local path or an * absolute local URL. */