aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2004-04-09 05:45:41 +0000
committerIgor Sysoev <igor@sysoev.ru>2004-04-09 05:45:41 +0000
commit3d3d2e4700e2de6d6864c2164dccff6e78c51b3d (patch)
tree5ab8086101367c8e309682719390a868fad0c394 /src
parentfff32326ca9009ebba0aadd24aa0683afe0d4a02 (diff)
downloadnginx-3d3d2e4700e2de6d6864c2164dccff6e78c51b3d.tar.gz
nginx-3d3d2e4700e2de6d6864c2164dccff6e78c51b3d.zip
nginx-0.0.3-2004-04-09-09:45:41 import
Diffstat (limited to 'src')
-rw-r--r--src/http/ngx_http_write_filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_write_filter.c b/src/http/ngx_http_write_filter.c
index 8c1a98a91..5fa144fbc 100644
--- a/src/http/ngx_http_write_filter.c
+++ b/src/http/ngx_http_write_filter.c
@@ -133,7 +133,7 @@ int ngx_http_write_filter(ngx_http_request_t *r, ngx_chain_t *in)
* the size of the hunks is smaller than "postpone_output" directive
*/
- if (!last && flush == 0 && size < (off_t) conf->postpone_output) {
+ if (!last && flush == 0 && size < conf->postpone_output) {
return NGX_OK;
}