]> granicus.if.org Git - php/commitdiff
CS fix
authorfoobar <sniper@php.net>
Mon, 23 May 2005 06:46:25 +0000 (06:46 +0000)
committerfoobar <sniper@php.net>
Mon, 23 May 2005 06:46:25 +0000 (06:46 +0000)
ext/session/session.c

index cc1798b3db51fe07e56cf2c8a63ae425bf6a9d09..7e96da4d6a43aac2bac31c59f47793cee6883acf 100644 (file)
@@ -131,9 +131,10 @@ static PHP_INI_MH(OnUpdateSerializer)
        return SUCCESS;
 }
 
-static PHP_INI_MH(OnUpdateSaveDir) {
+static PHP_INI_MH(OnUpdateSaveDir)
+{
        /* Only do the safemode/open_basedir check at runtime */
-       if(stage == PHP_INI_STAGE_RUNTIME) {
+       if (stage == PHP_INI_STAGE_RUNTIME) {
                if (PG(safe_mode) && (!php_checkuid(new_value, NULL, CHECKUID_ALLOW_ONLY_DIR))) {
                        return FAILURE;
                }