From 9371a7a493de284d94ce94e1a6147f6fc9e3d393 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Mon, 15 Jun 2009 09:02:09 +0000 Subject: merge r2900: fix XSLT filter in SSI subrequests --- src/core/ngx_output_chain.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/ngx_output_chain.c') diff --git a/src/core/ngx_output_chain.c b/src/core/ngx_output_chain.c index 71016996d..ee23e8fe1 100644 --- a/src/core/ngx_output_chain.c +++ b/src/core/ngx_output_chain.c @@ -503,6 +503,7 @@ ngx_output_chain_copy_buf(ngx_output_chain_ctx_t *ctx) if (src->pos == src->last) { dst->flush = src->flush; dst->last_buf = src->last_buf; + dst->last_in_chain = src->last_in_chain; } } else { @@ -577,6 +578,7 @@ ngx_output_chain_copy_buf(ngx_output_chain_ctx_t *ctx) if (src->file_pos == src->file_last) { dst->flush = src->flush; dst->last_buf = src->last_buf; + dst->last_in_chain = src->last_in_chain; } } -- cgit