mirror of https://github.com/nginx/nginx
Merge of r4327:
Removed unused function ngx_regex_capture_count(). The function has been unused since r3326 (0.8.25).
This commit is contained in:
parent
e646c6a946
commit
6154497b90
|
|
@ -136,23 +136,6 @@ failed:
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
ngx_int_t
|
|
||||||
ngx_regex_capture_count(ngx_regex_t *re)
|
|
||||||
{
|
|
||||||
int rc, n;
|
|
||||||
|
|
||||||
n = 0;
|
|
||||||
|
|
||||||
rc = pcre_fullinfo(re, NULL, PCRE_INFO_CAPTURECOUNT, &n);
|
|
||||||
|
|
||||||
if (rc < 0) {
|
|
||||||
return (ngx_int_t) rc;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (ngx_int_t) n;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
ngx_int_t
|
ngx_int_t
|
||||||
ngx_regex_exec_array(ngx_array_t *a, ngx_str_t *s, ngx_log_t *log)
|
ngx_regex_exec_array(ngx_array_t *a, ngx_str_t *s, ngx_log_t *log)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue