Ignore:
Timestamp:
02/03/09 19:41:37 (3 years ago)
Author:
George Potapov <nephrite@…>
Branches:
master-v0.7, nginx-v0.7, nginx-v0.8, upstream_count_limit
Children:
2ac4f5
Parents:
2240a4
git-author:
George Potapov <nephrite@…> (02/03/09 19:41:37)
git-committer:
George Potapov <nephrite@…> (02/03/09 19:41:37)
Message:

vendor drop nginx 0.7.31

File:
1 edited

Legend:

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

    r8f5df0 re7b311  
    380380    } 
    381381 
     382    r->expect_tested = 1; 
     383 
    382384    if (ngx_http_discard_request_body(r) != NGX_OK) { 
    383385        error = NGX_HTTP_INTERNAL_SERVER_ERROR; 
     
    432434{ 
    433435    u_char                     ch, *p, *last; 
     436    ngx_int_t                  overwrite; 
    434437    ngx_str_t                 *uri, *args, u, a; 
    435438    ngx_table_elt_t           *location; 
    436439    ngx_http_core_loc_conf_t  *clcf; 
    437440 
    438     r->err_status = err_page->overwrite; 
     441    overwrite = err_page->overwrite; 
     442 
     443    if (overwrite && overwrite != NGX_HTTP_OK) { 
     444        r->expect_tested = 1; 
     445    } 
     446 
     447    r->err_status = overwrite; 
    439448 
    440449    r->zero_in_uri = 0; 
Note: See TracChangeset for help on using the changeset viewer.