View | Details | Raw Unified | Return to bug 31226
Collapse All | Expand All

(-)file_not_specified_in_diff (-6 / +5 lines)
Line  Link Here
0
-- httpd-2.0.54/server/core.c-broken-proxy-filter      2006-12-07 10:51:56.000000000 -0500
0
++ httpd-2.0.54/server/core.c  2006-12-07 10:55:36.000000000 -0500
Lines 2874-2885 Link Here
2874
    conf = (core_dir_config *)ap_get_module_config(r->per_dir_config,
2874
    conf = (core_dir_config *)ap_get_module_config(r->per_dir_config,
2875
                                                   &core_module);
2875
                                                   &core_module);
2876
2876
2877
    /* We can't do anything with proxy requests, no content-types or if
2877
    /* We can't do anything with no content-type or if we don't have a
2878
     * we don't have a filter configured.
2878
     * filter configured.
2879
     */
2879
     */
2880
    if (r->proxyreq != PROXYREQ_NONE || !r->content_type ||
2880
    if (!r->content_type || !conf->ct_output_filters) {
2881
        !conf->ct_output_filters) {
2881
      return;
2882
        return;
2883
    }
2882
    }
2884
2883
2885
    ctypes = r->content_type;
2884
    ctypes = r->content_type;

Return to bug 31226