diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2002-12-05 16:21:24 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2002-12-05 16:21:24 +0000 |
| commit | 6ed07e4f0640e1f1c9717fdaa952edf26faa86e0 (patch) | |
| tree | 4f40c92959ec56985a7004fd78604efe2fdc90c8 /src/http/ngx_http_event.c | |
| parent | 481b643c3902f83826a06b03e30660cb60d87ced (diff) | |
| download | nginx-6ed07e4f0640e1f1c9717fdaa952edf26faa86e0.tar.gz nginx-6ed07e4f0640e1f1c9717fdaa952edf26faa86e0.tar.bz2 | |
nginx-0.0.1-2002-12-05-19:21:24 import
Diffstat (limited to '')
| -rw-r--r-- | src/http/ngx_http_event.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/http/ngx_http_event.c b/src/http/ngx_http_event.c index da5f1fe90..8a7cfa626 100644 --- a/src/http/ngx_http_event.c +++ b/src/http/ngx_http_event.c @@ -495,6 +495,9 @@ static int ngx_http_event_handler(ngx_http_request_t *r) rc = ngx_http_handler(r); + if (rc == NGX_WAITING) + return rc; + /* transfer not completed */ if (rc == NGX_AGAIN) { #if (HAVE_CLEAR_EVENT) |
