aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2011-08-18 16:27:30 +0000
committerIgor Sysoev <igor@sysoev.ru>2011-08-18 16:27:30 +0000
commitc4ff39ae2b79a6a54535f3c8abc9f2ccefa4ee99 (patch)
tree3a24bcc9866657aa82b0d2e04179f1d45d44f1a3 /src
parent400de576f918f08a522b5b86d54038d2c0b7f6ef (diff)
downloadnginx-c4ff39ae2b79a6a54535f3c8abc9f2ccefa4ee99.tar.gz
nginx-c4ff39ae2b79a6a54535f3c8abc9f2ccefa4ee99.zip
Fix names of the referer hash size directives introduced in r3940.
Diffstat (limited to 'src')
-rw-r--r--src/http/modules/ngx_http_referer_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_referer_module.c b/src/http/modules/ngx_http_referer_module.c
index 252fb5a93..cf2d744f1 100644
--- a/src/http/modules/ngx_http_referer_module.c
+++ b/src/http/modules/ngx_http_referer_module.c
@@ -309,7 +309,7 @@ ngx_http_referer_merge_conf(ngx_conf_t *cf, void *parent, void *child)
hash.key = ngx_hash_key_lc;
hash.max_size = conf->referer_hash_max_size;
hash.bucket_size = conf->referer_hash_bucket_size;
- hash.name = "referers_hash";
+ hash.name = "referer_hash";
hash.pool = cf->pool;
if (conf->keys->keys.nelts) {