diff options
author | Igor Sysoev <igor@sysoev.ru> | 2010-01-11 11:21:46 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2010-01-11 11:21:46 +0000 |
commit | e4bc4a2940a0d39e1b07dd9e0f30b39dfd973e18 (patch) | |
tree | f38b78566c1e87dbe0dce53f0ee2a40040a4add9 | |
parent | 089b2fd31edf874975a2420eba141a9547f1d2f1 (diff) | |
download | nginx-e4bc4a2940a0d39e1b07dd9e0f30b39dfd973e18.tar.gz nginx-e4bc4a2940a0d39e1b07dd9e0f30b39dfd973e18.zip |
named captures worked for two names only
-rw-r--r-- | src/http/ngx_http_variables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_variables.c b/src/http/ngx_http_variables.c index 0231d6727..150c4e2be 100644 --- a/src/http/ngx_http_variables.c +++ b/src/http/ngx_http_variables.c @@ -1743,7 +1743,7 @@ ngx_http_regex_compile(ngx_conf_t *cf, ngx_regex_compile_t *rc) v->get_handler = ngx_http_variable_not_found; - p += i + size; + p += size; } return re; |