comparison src/http/ngx_http_copy_filter_module.c @ 314:d5ec0be9c835 NGINX_0_6_1

nginx 0.6.1 *) Bugfix: in SSI parsing. *) Bugfix: if remote SSI subrequest was used, then posterior local file subrequest might transferred to client in wrong order. *) Bugfix: large SSI inclusions buffered in temporary files were truncated. *) Bugfix: the perl $$ variable value in ngx_http_perl_module was equal to the master process identification number.
author Igor Sysoev <http://sysoev.ru>
date Sun, 17 Jun 2007 00:00:00 +0400
parents f3ec44f4a53b
children 9121a0a91f47
comparison
equal deleted inserted replaced
313:a42b0aafacc1 314:d5ec0be9c835
115 r->buffered &= ~NGX_HTTP_COPY_BUFFERED; 115 r->buffered &= ~NGX_HTTP_COPY_BUFFERED;
116 } else { 116 } else {
117 r->buffered |= NGX_HTTP_COPY_BUFFERED; 117 r->buffered |= NGX_HTTP_COPY_BUFFERED;
118 } 118 }
119 119
120 if (r != r->main) {
121 r->out = ctx->in;
122 }
123
120 #if (NGX_DEBUG) 124 #if (NGX_DEBUG)
121 ngx_log_debug3(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, 125 ngx_log_debug3(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
122 "copy filter: %i \"%V?%V\"", rc, &r->uri, &r->args); 126 "copy filter: %i \"%V?%V\"", rc, &r->uri, &r->args);
123 #endif 127 #endif
124 128