diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-03-23 06:01:52 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-03-23 06:01:52 +0000 |
commit | 89690bfe02703853c3e987d1e5c4d9878c4d28f0 (patch) | |
tree | c5d9a59cdd74b54ffa939dcf59886307f26c984c /src/http/modules/ngx_http_static_handler.c | |
parent | ae02c19867083c6ad3e51506109cb37bca1d36d1 (diff) | |
download | nginx-89690bfe02703853c3e987d1e5c4d9878c4d28f0.tar.gz nginx-89690bfe02703853c3e987d1e5c4d9878c4d28f0.zip |
nginx-0.0.3-2004-03-23-09:01:52 import
Diffstat (limited to 'src/http/modules/ngx_http_static_handler.c')
-rw-r--r-- | src/http/modules/ngx_http_static_handler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_static_handler.c b/src/http/modules/ngx_http_static_handler.c index 0576255eb..ae1b8170d 100644 --- a/src/http/modules/ngx_http_static_handler.c +++ b/src/http/modules/ngx_http_static_handler.c @@ -89,7 +89,7 @@ static ngx_int_t ngx_http_static_handler(ngx_http_request_t *r) rc = ngx_http_discard_body(r); - if (rc != NGX_OK) { + if (rc != NGX_OK && rc != NGX_AGAIN) { return rc; } |