comparison src/core/ngx_output_chain.c @ 308:94e16de3c33f NGINX_0_5_24

nginx 0.5.24 *) Security: the "ssl_verify_client" directive did not work if request was made using HTTP/0.9. *) Bugfix: a part of response body might be passed uncompressed if gzip was used; bug appeared in 0.5.23.
author Igor Sysoev <http://sysoev.ru>
date Wed, 06 Jun 2007 00:00:00 +0400
parents 55328d69b335
children 6639b93e81b2
comparison
equal deleted inserted replaced
307:0bcb7f864b94 308:94e16de3c33f
416 dst->in_file = 0; 416 dst->in_file = 0;
417 } 417 }
418 418
419 src->file_pos += n; 419 src->file_pos += n;
420 420
421 if (src->pos == src->last) { 421 if (src->file_pos == src->file_last) {
422 dst->flush = src->flush; 422 dst->flush = src->flush;
423 dst->last_buf = src->last_buf; 423 dst->last_buf = src->last_buf;
424 } 424 }
425 } 425 }
426 426