From fa684c5bd4876290a4bc75fefff91c09691bce0a Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Tue, 10 Jul 2001 18:49:47 +0000 Subject: [PATCH] Whitespace --- main/fopen_wrappers.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/main/fopen_wrappers.c b/main/fopen_wrappers.c index f76ae1f88ab..6f30aa09cd3 100644 --- a/main/fopen_wrappers.c +++ b/main/fopen_wrappers.c @@ -247,16 +247,16 @@ PHPAPI int php_check_open_basedir(char *path) */ static FILE *php_fopen_and_set_opened_path(const char *path, char *mode, char **opened_path) { - FILE *fp; + FILE *fp; - if (php_check_open_basedir((char *)path)) { - return NULL; - } - fp = VCWD_FOPEN(path, mode); - if (fp && opened_path) { - *opened_path = expand_filepath(path,NULL); - } - return fp; + if (php_check_open_basedir((char *)path)) { + return NULL; + } + fp = VCWD_FOPEN(path, mode); + if (fp && opened_path) { + *opened_path = expand_filepath(path,NULL); + } + return fp; } /* }}} */