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

(-)modules/proxy/proxy_util.c.orig (-1 / +4 lines)
Lines 2077-2083 Link Here
2077
     * short living pool.
2077
     * short living pool.
2078
     */
2078
     */
2079
    /* are we connecting directly, or via a proxy? */
2079
    /* are we connecting directly, or via a proxy? */
2080
    if (!proxyname) {
2080
    /* handle HTTP/1.0 via SSL like direct connect */
2081
    if (!proxyname ||
2082
        (conn->is_ssl &&
2083
         apr_table_get(r->subprocess_env, "force-proxy-request-1.0"))) {
2081
        *url = apr_pstrcat(p, uri->path, uri->query ? "?" : "",
2084
        *url = apr_pstrcat(p, uri->path, uri->query ? "?" : "",
2082
                           uri->query ? uri->query : "",
2085
                           uri->query ? uri->query : "",
2083
                           uri->fragment ? "#" : "",
2086
                           uri->fragment ? "#" : "",

Return to bug 55892