tony2001 Wed Dec 14 00:55:18 2005 EDT
Modified files: (Branch: PHP_5_0)
/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.420.2.13&r2=1.420.2.14&diff_format=u
Index: php-src/ext/standard/string.c
diff -u php-src/ext/standard/string.c:1.420.2.13
php-src/ext/standard/string.c:1.420.2.14
--- php-src/ext/standard/string.c:1.420.2.13 Wed Sep 28 22:35:43 2005
+++ php-src/ext/standard/string.c Wed Dec 14 00:55:18 2005
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: string.c,v 1.420.2.13 2005/09/28 22:35:43 iliaa Exp $ */
+/* $Id: string.c,v 1.420.2.14 2005/12/14 00:55:18 tony2001 Exp $ */
/* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */
@@ -4171,7 +4171,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