]> granicus.if.org Git - apache/commitdiff
The new request_rec set up for redirects needs to pick up the
authorJeff Trawick <trawick@apache.org>
Thu, 5 Oct 2000 02:11:11 +0000 (02:11 +0000)
committerJeff Trawick <trawick@apache.org>
Thu, 5 Oct 2000 02:11:11 +0000 (02:11 +0000)
output filter chain from the conn_rec.  Any required request
filters will be inserted later.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86394 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_request.c

index 2b68e0ecfa7693edc6d7139e81a8d9e1d160866e..fda602133c5aa8857fb90c6af25de0983f8622df 100644 (file)
@@ -1385,6 +1385,8 @@ static request_rec *internal_internal_redirect(const char *new_uri,
     new->read_length     = r->read_length;     /* We can only read it once */
     new->vlist_validator = r->vlist_validator;
 
+    new->output_filters  = r->connection->output_filters;
+
     apr_table_setn(new->subprocess_env, "REDIRECT_STATUS",
        apr_psprintf(r->pool, "%d", r->status));