diff options
author | Valentin Bartenev <vbart@nginx.com> | 2012-05-17 13:47:04 +0000 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2012-05-17 13:47:04 +0000 |
commit | 1c168c78757bc7f6d13000efa04311db6d30e953 (patch) | |
tree | 78e527e2ea2551562aa3a07c155b551f0d1e1a40 /src/core/ngx_regex.h | |
parent | 1b4397443fa707bbfcafb86bb1b0bb326f6d3adf (diff) | |
download | nginx-1c168c78757bc7f6d13000efa04311db6d30e953.tar.gz nginx-1c168c78757bc7f6d13000efa04311db6d30e953.zip |
Fixed the ngx_regex.h header file compatibility with C++.
Diffstat (limited to 'src/core/ngx_regex.h')
-rw-r--r-- | src/core/ngx_regex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ngx_regex.h b/src/core/ngx_regex.h index 55bd331bb..680486c81 100644 --- a/src/core/ngx_regex.h +++ b/src/core/ngx_regex.h @@ -21,7 +21,7 @@ typedef struct { - pcre *pcre; + pcre *code; pcre_extra *extra; } ngx_regex_t; @@ -50,7 +50,7 @@ void ngx_regex_init(void); ngx_int_t ngx_regex_compile(ngx_regex_compile_t *rc); #define ngx_regex_exec(re, s, captures, size) \ - pcre_exec(re->pcre, re->extra, (const char *) (s)->data, (s)->len, 0, 0, \ + pcre_exec(re->code, re->extra, (const char *) (s)->data, (s)->len, 0, 0, \ captures, size) #define ngx_regex_exec_n "pcre_exec()" |