this wasn't right wrap in paren to get in multi pipe sep regexp.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6620 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
7171254a9d
commit
901c41295e
|
@ -146,12 +146,7 @@ SWITCH_DECLARE(void) switch_perform_substitution(switch_regex_t *re, int match_c
|
||||||
}
|
}
|
||||||
index[z++] = '\0';
|
index[z++] = '\0';
|
||||||
z = 0;
|
z = 0;
|
||||||
if (match_count > 1) {
|
|
||||||
int offset = match_count - 2;
|
|
||||||
num = atoi(index) + offset;
|
|
||||||
} else {
|
|
||||||
num = atoi(index);
|
num = atoi(index);
|
||||||
}
|
|
||||||
|
|
||||||
if (pcre_copy_substring(field_data, ovector, match_count, num, replace, sizeof(replace)) > 0) {
|
if (pcre_copy_substring(field_data, ovector, match_count, num, replace, sizeof(replace)) > 0) {
|
||||||
switch_size_t r;
|
switch_size_t r;
|
||||||
|
|
Loading…
Reference in New Issue