diff options
author | Andrei Zmievski <andrei@php.net> | 1999-10-15 20:04:31 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 1999-10-15 20:04:31 +0000 |
commit | 22fb5f281abbe14a54efaab2e71d1e45b21c302f (patch) | |
tree | 02381820891853e385f735cf53a2df47e38f309a /ext/pcre/php_pcre.c | |
parent | 3ee9dbea0c20d071aa62aaab11f4454345c06711 (diff) | |
download | php-git-22fb5f281abbe14a54efaab2e71d1e45b21c302f.tar.gz |
Renamed a couple of functions to have proper php_ prefix.
Diffstat (limited to 'ext/pcre/php_pcre.c')
-rw-r--r-- | ext/pcre/php_pcre.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; |