diff options
author | Igor Sysoev <igor@sysoev.ru> | 2005-05-16 13:53:20 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2005-05-16 13:53:20 +0000 |
commit | d52477ff6da227552cd77ffcdf19941d5005ca13 (patch) | |
tree | b075a90c87e64b29770391ebcd0070c9bd208f5f /src/http/ngx_http_core_module.c | |
parent | d5d6b6bc3bfa5198f9ca7412b17feddaa348d1c6 (diff) | |
download | nginx-release-0.1.31.tar.gz nginx-release-0.1.31.zip |
nginx-0.1.31-RELEASE importrelease-0.1.31
*) Bugfix: the response encrypted by SSL may not transferred complete.
*) Bugfix: errors while processing FastCGI response by SSI.
*) Bugfix: errors while using SSI and gzipping.
*) Bugfix: the redirect with the 301 code was transferred without
response body; the bug had appeared in 0.1.30.
Diffstat (limited to 'src/http/ngx_http_core_module.c')
-rw-r--r-- | src/http/ngx_http_core_module.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index 2a9b3b7e5..42c8211d1 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -1023,6 +1023,8 @@ ngx_http_subrequest(ngx_http_request_t *r, sr->internal = 1; + sr->main_filter_need_in_memory = r->main_filter_need_in_memory; + ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, "http subrequest \"%V\"", uri); |