diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-04-10 14:49:51 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-04-10 14:49:51 +0000 |
commit | a655f363e214fd3c9ab5f4620d062f63c92ebd10 (patch) | |
tree | 894c644c981d88adbc917024cac7503655d77812 | |
parent | 909b36ab1f5c8e57c793468c516c3968d58b574b (diff) | |
download | nginx-a655f363e214fd3c9ab5f4620d062f63c92ebd10.tar.gz nginx-a655f363e214fd3c9ab5f4620d062f63c92ebd10.zip |
style fix
-rw-r--r-- | src/http/ngx_http_upstream.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/http/ngx_http_upstream.c b/src/http/ngx_http_upstream.c index 7e0c72a03..82f110246 100644 --- a/src/http/ngx_http_upstream.c +++ b/src/http/ngx_http_upstream.c @@ -2771,7 +2771,8 @@ ngx_http_upstream_finalize_request(ngx_http_request_t *r, #endif - if (u->header_sent && (rc == NGX_ERROR || rc >= NGX_HTTP_SPECIAL_RESPONSE)) + if (u->header_sent + && (rc == NGX_ERROR || rc >= NGX_HTTP_SPECIAL_RESPONSE)) { rc = 0; } |