comparison src/http/ngx_http_core_module.c @ 560:ab7d265273ed NGINX_0_8_26

nginx 0.8.26 *) Bugfix: in captures usage in "rewrite" directive; the bug had appeared in 0.8.25. *) Bugfix: nginx could not be built without the --with-debug option; the bug had appeared in 0.8.25.
author Igor Sysoev <http://sysoev.ru>
date Mon, 16 Nov 2009 00:00:00 +0300
parents e19e5f542878
children 5c576ea5dbd9
comparison
equal deleted inserted replaced
559:43154840419e 560:ab7d265273ed
2756 cmcf->variables_hash_bucket_size = 64; 2756 cmcf->variables_hash_bucket_size = 64;
2757 } 2757 }
2758 2758
2759 cmcf->variables_hash_bucket_size = 2759 cmcf->variables_hash_bucket_size =
2760 ngx_align(cmcf->variables_hash_bucket_size, ngx_cacheline_size); 2760 ngx_align(cmcf->variables_hash_bucket_size, ngx_cacheline_size);
2761
2762 if (cmcf->ncaptures) {
2763 cmcf->ncaptures = (cmcf->ncaptures + 1) * 3;
2764 }
2761 2765
2762 return NGX_CONF_OK; 2766 return NGX_CONF_OK;
2763 } 2767 }
2764 2768
2765 2769