From: Eric Covener Date: Sat, 18 Jan 2014 19:36:17 +0000 (+0000) Subject: no make depend in sandbox, fix bld break from r1559394 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2762a380ba804dc3a8f7459e5f9d1f48150c9fbe;p=thirdparty%2Fapache%2Fhttpd.git no make depend in sandbox, fix bld break from r1559394 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1559398 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index 5e0d9183c9b..a46e2458b2d 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -5027,7 +5027,7 @@ static int hook_fixup(request_rec *r) rewritelog((r, 1, dconf->directory, "internal redirect with %s " "[INTERNAL REDIRECT]", r->filename)); r->filename = apr_pstrcat(r->pool, "redirect:", r->filename, NULL); - r->handler = REDIRECT_HANDLER_NAME; + r->handler = REWRITE_REDIRECT_HANDLER_NAME; return OK; } } @@ -5073,7 +5073,7 @@ static int hook_mimetype(request_rec *r) */ static int handler_redirect(request_rec *r) { - if (strcmp(r->handler, REDIRECT_HANDLER_NAME)) { + if (strcmp(r->handler, REWRITE_REDIRECT_HANDLER_NAME)) { return DECLINED; }