diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-05-28 15:42:27 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-05-28 15:42:27 +0000 |
commit | 21c2cf88c1dc2df193a47fbd13ac9ff926066b8e (patch) | |
tree | 5226b6ce5a4eb7f4ed6dbb3804532dd448b301cf /src/core/ngx_output_chain.c | |
parent | 65105aaae3aba1c238e1b2fce294661dbd82a27f (diff) | |
download | nginx-21c2cf88c1dc2df193a47fbd13ac9ff926066b8e.tar.gz nginx-21c2cf88c1dc2df193a47fbd13ac9ff926066b8e.zip |
fix XSLT filter in SSI subrequests
Diffstat (limited to 'src/core/ngx_output_chain.c')
-rw-r--r-- | src/core/ngx_output_chain.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; } } |