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

(-)src/main/http_request.c (-1 / +1 lines)
Lines 1056-1062 Link Here
1056
     */
1056
     */
1057
    if ((r->status != HTTP_NOT_MODIFIED) && (r->status != HTTP_NO_CONTENT)
1057
    if ((r->status != HTTP_NOT_MODIFIED) && (r->status != HTTP_NO_CONTENT)
1058
        && !ap_status_drops_connection(r->status)
1058
        && !ap_status_drops_connection(r->status)
1059
        && r->connection && (r->connection->keepalive > 0)) {
1059
        && r->connection && (r->connection->keepalive != -1)) {
1060
1060
1061
        (void) ap_discard_request_body(r);
1061
        (void) ap_discard_request_body(r);
1062
    }
1062
    }

Return to bug 67928