projects
/
php
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
925d48d
)
*** empty log message ***
author
Andrey Hristov
<andrey@php.net>
Thu, 22 Jul 1999 14:22:32 +0000
(14:22 +0000)
committer
Andrey Hristov
<andrey@php.net>
Thu, 22 Jul 1999 14:22:32 +0000
(14:22 +0000)
ext/pcre/php_pcre.c
patch
|
blob
|
history
diff --git
a/ext/pcre/php_pcre.c
b/ext/pcre/php_pcre.c
index 001fe3e0c077664a13493783fdbac72dfdd7bf29..6ca165694c665ee3c451a9364a5612c0c7241696 100644
(file)
--- a/
ext/pcre/php_pcre.c
+++ b/
ext/pcre/php_pcre.c
@@
-231,7
+231,7
@@
static pcre* _pcre_get_compiled_regex(char *regex, pcre_extra *extra, int *preg_
*preg_options = 0;
/* Parse through the options, setting appropriate flags. Display
- a warning if we encounter an unknown
option. */
+ a warning if we encounter an unknown
modifier. */
while (*pp != 0) {
switch (*pp++) {
/* Perl compatible options */
@@
-255,7
+255,7
@@
static pcre* _pcre_get_compiled_regex(char *regex, pcre_extra *extra, int *preg_
break;
default:
- zend_error(E_WARNING, "Unknown
option
'%c'", pp[-1]);
+ zend_error(E_WARNING, "Unknown
modifier
'%c'", pp[-1]);
efree(pattern);
return NULL;
}