From: Jim Jagielski Date: Sun, 4 Sep 2011 19:37:31 +0000 (+0000) Subject: PR 44020 X-Git-Tag: 2.2.21~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b6d2a5eba41de453c872585155b383c3ef93e6b6;p=thirdparty%2Fapache%2Fhttpd.git PR 44020 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1165101 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 31ec1293c42..eef43a7eb52 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,9 @@ -*- coding: utf-8 -*- Changes with Apache 2.2.21 + *) mod_alias: Adjust log severity of "incomplete redirection target" + message. PR 44020. + *) mod_rewrite: Check validity of each internal (int:) RewriteMap even if the RewriteEngine is disabled in server context, avoiding a crash while referencing the invalid int: map at runtime. PR 50994. diff --git a/modules/mappers/mod_alias.c b/modules/mappers/mod_alias.c index 6a6856c5ca5..4ad212b3d9d 100644 --- a/modules/mappers/mod_alias.c +++ b/modules/mappers/mod_alias.c @@ -429,7 +429,7 @@ static int translate_alias_redir(request_rec *r) if (ret[0] == '/') { ret = ap_construct_url(r->pool, ret, r); - ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r, + ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "incomplete redirection target of '%s' for " "URI '%s' modified to '%s'", orig_target, r->uri, ret);