summaryrefslogtreecommitdiff
path: root/ext/pcre/php_pcre.h
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>2002-02-12 03:15:27 +0000
committerAndrei Zmievski <andrei@php.net>2002-02-12 03:15:27 +0000
commit260aee10fed14e3649a10077359bf59c468506bf (patch)
tree8509cf8d52ca82adcbffa3e705b007474be58979 /ext/pcre/php_pcre.h
parent51f1739983f4ebe840e7c4dec22dee3a5a8217de (diff)
downloadphp-git-260aee10fed14e3649a10077359bf59c468506bf.tar.gz
Fix a long-standing infelicity that resulted in extra regex information
not being passed to PCRE functions.
Diffstat (limited to 'ext/pcre/php_pcre.h')
-rw-r--r--ext/pcre/php_pcre.h2
1 files changed, 1 insertions, 1 deletions
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