comparison src/os/win32/ngx_files.c @ 344:e366ba5db8f8

nginx-0.0.3-2004-06-01-10:04:46 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 01 Jun 2004 06:04:46 +0000
parents 6bdf858bff8c
children da8c5707af39
comparison
equal deleted inserted replaced
343:6bdf858bff8c 344:e366ba5db8f8
141 while (cl) { 141 while (cl) {
142 buf = cl->buf->pos; 142 buf = cl->buf->pos;
143 prev = buf; 143 prev = buf;
144 size = 0; 144 size = 0;
145 145
146 /* coalesce the neighbouring hunks */ 146 /* coalesce the neighbouring bufs */
147 147
148 while (cl && prev == cl->buf->pos) { 148 while (cl && prev == cl->buf->pos) {
149 size += cl->buf->last - cl->buf->pos; 149 size += cl->buf->last - cl->buf->pos;
150 prev = cl->buf->last; 150 prev = cl->buf->last;
151 cl = cl->next; 151 cl = cl->next;