diff options
author | Igor Sysoev <igor@sysoev.ru> | 2011-08-18 16:27:30 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2011-08-18 16:27:30 +0000 |
commit | c4ff39ae2b79a6a54535f3c8abc9f2ccefa4ee99 (patch) | |
tree | 3a24bcc9866657aa82b0d2e04179f1d45d44f1a3 /src/http/modules/ngx_http_referer_module.c | |
parent | 400de576f918f08a522b5b86d54038d2c0b7f6ef (diff) | |
download | nginx-c4ff39ae2b79a6a54535f3c8abc9f2ccefa4ee99.tar.gz nginx-c4ff39ae2b79a6a54535f3c8abc9f2ccefa4ee99.zip |
Fix names of the referer hash size directives introduced in r3940.
Diffstat (limited to 'src/http/modules/ngx_http_referer_module.c')
-rw-r--r-- | src/http/modules/ngx_http_referer_module.c | 2 |
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) { |