jani Wed Jul 11 10:24:04 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/main main.c
Log:
MFH: No return values for void function
http://cvs.php.net/viewvc.cgi/php-src/main/main.c?r1=1.640.2.23.2.41&r2=1.640.2.23.2.42&diff_format=u
Index: php-src/main/main.c
diff -u php-src/main/main.c:1.640.2.23.2.41 php-src/main/main.c:1.640.2.23.2.42
--- php-src/main/main.c:1.640.2.23.2.41 Tue Jul 10 17:58:19 2007
+++ php-src/main/main.c Wed Jul 11 10:24:04 2007
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: main.c,v 1.640.2.23.2.41 2007/07/10 17:58:19 stas Exp $ */
+/* $Id: main.c,v 1.640.2.23.2.42 2007/07/11 10:24:04 jani Exp $ */
/* {{{ includes
*/
@@ -357,11 +357,11 @@
}
#endif
if (PG(safe_mode) && (!php_checkuid(PG(error_log), NULL,
CHECKUID_CHECK_FILE_AND_DIR|CHECKUID_NO_ERRORS))) {
- return FAILURE;
+ return;
}
if (PG(open_basedir) &&
php_check_open_basedir_ex(PG(error_log), 0 TSRMLS_CC)) {
- return FAILURE;
+ return;
}
fd = VCWD_OPEN_MODE(PG(error_log), O_CREAT | O_APPEND |
O_WRONLY, 0644);
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php