Commit dc5bdb3e authored by Paul Querna's avatar Paul Querna
Browse files

Opps. Use the correct member of the structure.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@220038 13f79535-47bb-0310-9956-ffa450edef68
parent 3e8b75ae
Loading
Loading
Loading
Loading
+1 −1
Changes for modules/cache/mod_cache.c: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -203,7 +203,7 @@ static int cache_out_filter(ap_filter_t *f, apr_bucket_brigade *bb)
    /* restore status of cached response */
    /* XXX: This exposes a bug in mem_cache, since it does not 
     * restore the status into it's handle. */
    r->status = cache->handle->status;
    r->status = cache->handle->cache_obj->info.status;

    /* recall_headers() was called in cache_select_url() */
    cache->provider->recall_body(cache->handle, r->pool, bb);