From: Andi Gutmans Date: Wed, 30 Aug 2000 20:32:29 +0000 (+0000) Subject: - Missed a space X-Git-Tag: php-4.0.3RC1~409 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ca5e0330ca60e4753c43e6a06517be1c60127a52;p=php - Missed a space --- diff --git a/main/fopen_wrappers.c b/main/fopen_wrappers.c index 21674d57eb..0eb01397ee 100644 --- a/main/fopen_wrappers.c +++ b/main/fopen_wrappers.c @@ -413,7 +413,7 @@ PHPAPI FILE *php_fopen_with_path(char *filename, char *mode, char *path, char ** #else if (IS_SLASH(*filename)) { #endif - if (PG(safe_mode)&& PG(doc_root)) { + if (PG(safe_mode) && PG(doc_root)) { snprintf(trypath, MAXPATHLEN, "%s%s", PG(doc_root), filename); if (!php_checkuid(trypath, mode, 0)) { return NULL;