diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-11-16 12:19:02 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-11-16 12:19:02 +0000 |
commit | c05f20ec2eace8239c53f680294c9a2154b39e7d (patch) | |
tree | fba2dd2e0c4f7a36f4b396b759645ced61c3c709 /src/http/ngx_http_script.h | |
parent | c0ae4716ece5e48c4e82863959d3ae9ff6693e65 (diff) | |
download | nginx-c05f20ec2eace8239c53f680294c9a2154b39e7d.tar.gz nginx-c05f20ec2eace8239c53f680294c9a2154b39e7d.zip |
regex named captures
Diffstat (limited to 'src/http/ngx_http_script.h')
-rw-r--r-- | src/http/ngx_http_script.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/http/ngx_http_script.h b/src/http/ngx_http_script.h index ea97069e6..90a4e1a06 100644 --- a/src/http/ngx_http_script.h +++ b/src/http/ngx_http_script.h @@ -114,10 +114,9 @@ typedef struct { typedef struct { ngx_http_script_code_pt code; - ngx_regex_t *regex; + ngx_http_regex_t *regex; ngx_array_t *lengths; uintptr_t size; - uintptr_t ncaptures; uintptr_t status; uintptr_t next; |