rrichards Sun Oct 2 07:33:31 2005 EDT
Modified files: (Branch: PHP_4_4)
/php-src/main php_variables.c
Log:
fix build - missing closing parenthesis
http://cvs.php.net/diff.php/php-src/main/php_variables.c?r1=1.45.2.13.2.3&r2=1.45.2.13.2.4&ty=u
Index: php-src/main/php_variables.c
diff -u php-src/main/php_variables.c:1.45.2.13.2.3
php-src/main/php_variables.c:1.45.2.13.2.4
--- php-src/main/php_variables.c:1.45.2.13.2.3 Wed Sep 28 18:34:02 2005
+++ php-src/main/php_variables.c Sun Oct 2 07:33:27 2005
@@ -16,7 +16,7 @@
| Zeev Suraski <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
*/
-/* $Id: php_variables.c,v 1.45.2.13.2.3 2005/09/28 22:34:02 iliaa Exp $ */
+/* $Id: php_variables.c,v 1.45.2.13.2.4 2005/10/02 11:33:27 rrichards Exp $ */
#include <stdio.h>
#include "php.h"
@@ -74,7 +74,7 @@
} else if (PG(register_globals)) {
symtable1 = EG(active_symbol_table);
/* GLOBALS hijack attempt, reject parameter */
- if (!strncmp("GLOBALS", var, sizeof("GLOBALS")) ||
!strncmp("GLOBALS", var, sizeof("GLOBALS[")-1) {
+ if (!strncmp("GLOBALS", var, sizeof("GLOBALS")) ||
!strncmp("GLOBALS", var, sizeof("GLOBALS[")-1)) {
return;
}
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php