From 260aee10fed14e3649a10077359bf59c468506bf Mon Sep 17 00:00:00 2001 From: Andrei Zmievski Date: Tue, 12 Feb 2002 03:15:27 +0000 Subject: Fix a long-standing infelicity that resulted in extra regex information not being passed to PCRE functions. --- ext/pcre/php_pcre.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/pcre/php_pcre.h') diff --git a/ext/pcre/php_pcre.h b/ext/pcre/php_pcre.h index a561ced319..5a48e3c87c 100644 --- a/ext/pcre/php_pcre.h +++ b/ext/pcre/php_pcre.h @@ -42,7 +42,7 @@ PHP_FUNCTION(preg_quote); PHP_FUNCTION(preg_grep); PHPAPI char *php_pcre_replace(char *regex, int regex_len, char *subject, int subject_len, zval *replace_val, int is_callable_replace, int *result_len, int limit TSRMLS_DC); -PHPAPI pcre* pcre_get_compiled_regex(char *regex, pcre_extra *extra, int *options); +PHPAPI pcre* pcre_get_compiled_regex(char *regex, pcre_extra **extra, int *options); extern zend_module_entry pcre_module_entry; #define pcre_module_ptr &pcre_module_entry -- cgit v1.2.1