diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2006-10-10 13:12:13 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2006-10-10 13:12:13 +0000 |
| commit | e3fbaeaffe256b408b146c8d77e1c5c744d63c14 (patch) | |
| tree | 890853dd3c791d25746aa5a44bbcf26ad468499a | |
| parent | 52ec2c48b9e80760576286bf5432d61e3c315475 (diff) | |
| download | nginx-e3fbaeaffe256b408b146c8d77e1c5c744d63c14.tar.gz nginx-e3fbaeaffe256b408b146c8d77e1c5c744d63c14.tar.bz2 | |
fix building introduced by previous commit
| -rw-r--r-- | src/http/ngx_http_upstream.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/ngx_http_upstream.c b/src/http/ngx_http_upstream.c index 71b9b89de..ad3f0fbf5 100644 --- a/src/http/ngx_http_upstream.c +++ b/src/http/ngx_http_upstream.c @@ -1500,6 +1500,8 @@ ngx_http_upstream_process_non_buffered_body(ngx_event_t *ev) ngx_http_core_loc_conf_t *clcf; c = ev->data; + r = c->data; + u = r->upstream; if (ev->write) { ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0, @@ -1525,8 +1527,6 @@ ngx_http_upstream_process_non_buffered_body(ngx_event_t *ev) return; } - r = c->data; - u = r->upstream; client = r->connection; b = &u->buffer; |
