tony2001                Wed Dec 14 00:54:29 2005 EDT

  Modified files:              (Branch: PHP_5_1)
    /php-src/ext/standard       string.c 
  Log:
  MFH: fix spelling and #35665
  
  
http://cvs.php.net/viewcvs.cgi/php-src/ext/standard/string.c?r1=1.445.2.3&r2=1.445.2.4&diff_format=u
Index: php-src/ext/standard/string.c
diff -u php-src/ext/standard/string.c:1.445.2.3 
php-src/ext/standard/string.c:1.445.2.4
--- php-src/ext/standard/string.c:1.445.2.3     Mon Dec  5 22:54:01 2005
+++ php-src/ext/standard/string.c       Wed Dec 14 00:54:29 2005
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: string.c,v 1.445.2.3 2005/12/05 22:54:01 sniper Exp $ */
+/* $Id: string.c,v 1.445.2.4 2005/12/14 00:54:29 tony2001 Exp $ */
 
 /* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */
 
@@ -4219,7 +4219,7 @@
        /* Initialize the result string */      
        result_len = Z_STRLEN_PP(input_str) * Z_LVAL_PP(mult);
        if (result_len < 1 || result_len > 2147483647) {
-               php_error_docref(NULL TSRMLS_CC, E_WARNING, "You may not create 
strings longer then 2147483647 bytes");
+               php_error_docref(NULL TSRMLS_CC, E_WARNING, "You may not create 
strings longer than 2147483647 bytes");
                RETURN_FALSE;
        }
        result = (char *)emalloc(result_len + 1);

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to