diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-05-04 15:32:46 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-05-04 15:32:46 +0000 |
commit | ac72bd17d1c845b81aa9d1050b764ba1018ae462 (patch) | |
tree | e7df03607b73b7c1cca5438fa02b6022c0e37e74 /src/core/ngx_buf.c | |
parent | 2cca46c774157b529c439eafe0083d75e74f138a (diff) | |
download | nginx-ac72bd17d1c845b81aa9d1050b764ba1018ae462.tar.gz nginx-ac72bd17d1c845b81aa9d1050b764ba1018ae462.zip |
nginx-0.3.44-RELEASE importrelease-0.3.44
*) Feature: the "wait" parameter in the "include" SSI command.
*) Feature: the Ukrainian and Byelorussian characters were added to
koi-win conversion table.
*) Bugfix: in the SSI.
Diffstat (limited to 'src/core/ngx_buf.c')
-rw-r--r-- | src/core/ngx_buf.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/ngx_buf.c b/src/core/ngx_buf.c index 901c3f540..31d990315 100644 --- a/src/core/ngx_buf.c +++ b/src/core/ngx_buf.c @@ -134,12 +134,6 @@ ngx_chain_add_copy(ngx_pool_t *pool, ngx_chain_t **chain, ngx_chain_t *in) } while (in) { - - if (ngx_buf_sync_only(in->buf)) { - in = in->next; - continue; - } - cl = ngx_alloc_chain_link(pool); if (cl == NULL) { return NGX_ERROR; |