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:
Maxim Dounin 2012-02-04 23:28:10 +00:00
parent 9e51bcdadb
commit 3b898d19e8
1 changed files with 0 additions and 17 deletions

View File

@ -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_regex_exec_array(ngx_array_t *a, ngx_str_t *s, ngx_log_t *log)
{