summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2010-06-03 16:42:07 +0000
committerIgor Sysoev <igor@sysoev.ru>2010-06-03 16:42:07 +0000
commitca9259c0a5012ba2a2c61542a97524fb434e9179 (patch)
tree82e0f77caf20ccfe74ec3f6ff6485658ec4de7d5 /src
parent17483d5bfb260b723b9ac89adc6f23631c620b01 (diff)
downloadnginx-ca9259c0a5012ba2a2c61542a97524fb434e9179.tar.gz
nginx-ca9259c0a5012ba2a2c61542a97524fb434e9179.tar.bz2
rename variable to conform to the next commit
Diffstat (limited to 'src')
-rw-r--r--src/http/modules/ngx_http_fastcgi_module.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/http/modules/ngx_http_fastcgi_module.c b/src/http/modules/ngx_http_fastcgi_module.c
index 86cd62a54..233b25abb 100644
--- a/src/http/modules/ngx_http_fastcgi_module.c
+++ b/src/http/modules/ngx_http_fastcgi_module.c
@@ -2021,7 +2021,7 @@ ngx_http_fastcgi_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child)
u_char *p;
size_t size;
uintptr_t *code;
- ngx_str_t *h;
+ ngx_str_t *hide;
ngx_uint_t i;
ngx_array_t headers_names;
ngx_keyval_t *src;
@@ -2249,16 +2249,16 @@ ngx_http_fastcgi_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child)
#if (NGX_HTTP_CACHE)
- h = conf->upstream.cache ? ngx_http_fastcgi_hide_cache_headers:
- ngx_http_fastcgi_hide_headers;
+ hide = conf->upstream.cache ? ngx_http_fastcgi_hide_cache_headers:
+ ngx_http_fastcgi_hide_headers;
#else
- h = ngx_http_fastcgi_hide_headers;
+ hide = ngx_http_fastcgi_hide_headers;
#endif
if (ngx_http_upstream_hide_headers_hash(cf, &conf->upstream,
- &prev->upstream, h, &hash)
+ &prev->upstream, hide, &hash)
!= NGX_OK)
{
return NGX_CONF_ERROR;