]> granicus.if.org Git - apache/commitdiff
no make depend in sandbox, fix bld break from r1559394
authorEric Covener <covener@apache.org>
Sat, 18 Jan 2014 19:36:17 +0000 (19:36 +0000)
committerEric Covener <covener@apache.org>
Sat, 18 Jan 2014 19:36:17 +0000 (19:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1559398 13f79535-47bb-0310-9956-ffa450edef68

modules/mappers/mod_rewrite.c

index 5e0d9183c9be2cc7c17834f5d23520bd3accfb19..a46e2458b2dea894f418e78489fa49fb62106533 100644 (file)
@@ -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;
     }