]> granicus.if.org Git - php/commitdiff
Boo.
authorAndrei Zmievski <andrei@php.net>
Tue, 14 Dec 1999 03:25:04 +0000 (03:25 +0000)
committerAndrei Zmievski <andrei@php.net>
Tue, 14 Dec 1999 03:25:04 +0000 (03:25 +0000)
NEWS
ext/standard/string.c

diff --git a/NEWS b/NEWS
index c01afa43fefedd22efdbfb4438275a0964bee3e1..36e6b2af40111ebcb3de34672b5f0bfdabd15d74 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,7 +2,7 @@ PHP 4.0                                                                    NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 
 ?? ?? ????, Version 4.0 Beta 4
-- Made strspn() and strcspn() binary-safe.
+- Made strspn() and strcspn() binary-safe. (Andrei)
 - Added array_multisort() function. (Andrei)
 - Made pageinfo.c thread-safe (Sascha)
 - Made implode() binary-safe (Andrei)
index cfea7aa4d7f5f742d1b4604dec2bd6fd11b0b000..4e5218dd76e8d619d5b642afd2d14c81bce33de3 100644 (file)
@@ -103,7 +103,7 @@ PHP_FUNCTION(strspn)
    Find length of initial segment consisting entirely of characters not found in mask */
 PHP_FUNCTION(strcspn)
 {
-       pval **s1,**s2;
+       zval **s1,**s2;
        
        if (ARG_COUNT(ht)!=2 || getParametersEx(2, &s1, &s2) == FAILURE) {
                WRONG_PARAM_COUNT;