comparison src/core/ngx_output_chain.c @ 1215:fb3ff245c96b

an request body might not be passed to backend, the bug was introduced in r1212
author Igor Sysoev <igor@sysoev.ru>
date Tue, 29 May 2007 12:06:42 +0000
parents 9177da9e4add
children 2b4fdc9640b7
comparison
equal deleted inserted replaced
1214:d7af84c26645 1215:fb3ff245c96b
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 }