diff options
author | Ruslan Ermilov <ru@nginx.com> | 2016-03-16 14:44:41 +0300 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2016-03-16 14:44:41 +0300 |
commit | 07fc7dc7194e9928bf7e2b9dc66bb51ab9563cf3 (patch) | |
tree | b464910cf83040528364c882fa9f8f07e703125a /src | |
parent | 07a7b57762dbdfee5f7fdf574233679a1a6da971 (diff) | |
download | nginx-07fc7dc7194e9928bf7e2b9dc66bb51ab9563cf3.tar.gz nginx-07fc7dc7194e9928bf7e2b9dc66bb51ab9563cf3.zip |
Style.
Diffstat (limited to 'src')
-rw-r--r-- | src/http/ngx_http_upstream.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/http/ngx_http_upstream.c b/src/http/ngx_http_upstream.c index 3d01523a5..4df485a99 100644 --- a/src/http/ngx_http_upstream.c +++ b/src/http/ngx_http_upstream.c @@ -416,10 +416,10 @@ static ngx_http_upstream_next_t ngx_http_upstream_next_errors[] = { ngx_conf_bitmask_t ngx_http_upstream_cache_method_mask[] = { - { ngx_string("GET"), NGX_HTTP_GET}, - { ngx_string("HEAD"), NGX_HTTP_HEAD }, - { ngx_string("POST"), NGX_HTTP_POST }, - { ngx_null_string, 0 } + { ngx_string("GET"), NGX_HTTP_GET }, + { ngx_string("HEAD"), NGX_HTTP_HEAD }, + { ngx_string("POST"), NGX_HTTP_POST }, + { ngx_null_string, 0 } }; |