From: Igor Sysoev Date: Tue, 11 Oct 2011 11:11:44 +0000 (+0000) Subject: Fixing directive name in error message if types hash size is not enough. X-Git-Tag: release-1.1.6~22 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=0d19f020ba932be2959a9249b6f58c4151e7c443;p=nginx.git Fixing directive name in error message if types hash size is not enough. --- diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index 3056e8470..2bf6a19a7 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -3425,7 +3425,7 @@ ngx_http_core_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child) types_hash.key = ngx_hash_key_lc; types_hash.max_size = conf->types_hash_max_size; types_hash.bucket_size = conf->types_hash_bucket_size; - types_hash.name = "mime_types_hash"; + types_hash.name = "types_hash"; types_hash.pool = cf->pool; types_hash.temp_pool = NULL;