comparison src/core/ngx_output_chain.c @ 304:e4f4cbfed5f5 NGINX_0_5_22

nginx 0.5.22 *) Bugfix: a big request body might not be passed to backend; bug appeared in 0.5.21.
author Igor Sysoev <http://sysoev.ru>
date Tue, 29 May 2007 00:00:00 +0400
parents 9b7db0df50f0
children 55328d69b335
comparison
equal deleted inserted replaced
303:8b5bc9ef5e54 304:e4f4cbfed5f5
487 return NGX_ERROR; 487 return NGX_ERROR;
488 } 488 }
489 489
490 if (ctx->out == NULL) { 490 if (ctx->out == NULL) {
491 ctx->last = &ctx->out; 491 ctx->last = &ctx->out;
492 } 492
493 493 if (!ctx->connection->buffered) {
494 if (!ctx->connection->buffered) { 494 return NGX_OK;
495 return NGX_OK; 495 }
496 } 496 }
497 497
498 return NGX_AGAIN; 498 return NGX_AGAIN;
499 } 499 }