Ignore:
Timestamp:
02/03/09 19:54:45 (3 years ago)
Author:
George Potapov <nephrite@…>
Branches:
master-v0.6, nginx-v0.6
Children:
209e69, 6c857c, e8c363f79fad03918abb189d5a026fd0cd6d14f4
Parents:
60af37
git-author:
George Potapov <nephrite@…> (02/03/09 19:54:45)
git-committer:
George Potapov <nephrite@…> (02/03/09 19:54:45)
Message:

vendor drop nginx 0.6.35

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/src/http/ngx_http_special_response.c

    r648814 rfeb0c3  
    379379    } 
    380380 
     381    r->expect_tested = 1; 
     382 
    381383    if (ngx_http_discard_request_body(r) != NGX_OK) { 
    382384        error = NGX_HTTP_INTERNAL_SERVER_ERROR; 
     
    431433{ 
    432434    u_char                     ch, *p, *last; 
     435    ngx_int_t                  overwrite; 
    433436    ngx_str_t                 *uri, *args, u, a; 
    434437    ngx_table_elt_t           *location; 
    435438    ngx_http_core_loc_conf_t  *clcf; 
    436439 
    437     r->err_status = err_page->overwrite; 
     440    overwrite = err_page->overwrite; 
     441 
     442    if (overwrite && overwrite != NGX_HTTP_OK) { 
     443        r->expect_tested = 1; 
     444    } 
     445 
     446    r->err_status = overwrite; 
    438447 
    439448    r->zero_in_uri = 0; 
Note: See TracChangeset for help on using the changeset viewer.