From 22fb5f281abbe14a54efaab2e71d1e45b21c302f Mon Sep 17 00:00:00 2001 From: Andrei Zmievski Date: Fri, 15 Oct 1999 20:04:31 +0000 Subject: Renamed a couple of functions to have proper php_ prefix. --- ext/pcre/php_pcre.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/pcre/php_pcre.c') diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index 02b0fc52de..7a0c42eb0c 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -566,9 +566,9 @@ static int _preg_do_eval(char *eval_str, char *subject, int *offsets, match = subject + offsets[backref<<1]; match_len = offsets[(backref<<1)+1] - offsets[backref<<1]; sprintf(backref_buf, "\\%d", backref); - new_code = _php3_str_to_str(code, code_len, - backref_buf, (backref > 9) ? 3 : 2, - match, match_len, &new_code_len); + new_code = php_str_to_str(code, code_len, + backref_buf, (backref > 9) ? 3 : 2, + match, match_len, &new_code_len); /* Adjust the walk pointer */ walk = new_code + (walk - code) + match_len; -- cgit v1.2.1