diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-10-22 07:05:29 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-10-22 07:05:29 +0000 |
commit | 5bf3d25d69ecdbccaa98beeb089a7a6850529b89 (patch) | |
tree | 1bc211941faf078f87f79bea1f2703e3190483fa /src/os/unix/ngx_freebsd_sendfile_chain.c | |
parent | 419f9aceb4d994c2f7f51400f59fb2da0ed666d4 (diff) | |
download | nginx-5bf3d25d69ecdbccaa98beeb089a7a6850529b89.tar.gz nginx-5bf3d25d69ecdbccaa98beeb089a7a6850529b89.zip |
nginx-0.0.1-2003-10-22-11:05:29 import
Diffstat (limited to 'src/os/unix/ngx_freebsd_sendfile_chain.c')
-rw-r--r-- | src/os/unix/ngx_freebsd_sendfile_chain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/unix/ngx_freebsd_sendfile_chain.c b/src/os/unix/ngx_freebsd_sendfile_chain.c index 1632424ce..093265a33 100644 --- a/src/os/unix/ngx_freebsd_sendfile_chain.c +++ b/src/os/unix/ngx_freebsd_sendfile_chain.c @@ -83,9 +83,9 @@ ngx_chain_t *ngx_freebsd_sendfile_chain(ngx_connection_t *c, ngx_chain_t *in) if (ce && (ce->hunk->type & NGX_HUNK_FILE)) { file = ce->hunk; - ce = ce->next; fsize = (size_t) (file->file_last - file->file_pos); fprev = file->file_last; + ce = ce->next; /* coalesce the neighbouring file hunks */ |