summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-06-16 01:08:39 +0000
committerAndi Gutmans <andi@php.net>2000-06-16 01:08:39 +0000
commit70b8e3e8f60ab5316859bcfb3bf12866adbce554 (patch)
tree1dd2521d1e12c4e2bef1add217fcb3958dc5bcc3
parentcbfa4c88d950e36b4f7632135db69c8b43a34d6b (diff)
downloadphp-git-70b8e3e8f60ab5316859bcfb3bf12866adbce554.tar.gz
- Missed a bracket
-rw-r--r--main/fopen_wrappers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/fopen_wrappers.c b/main/fopen_wrappers.c
index dc114b3d1c..0291ef7cbb 100644
--- a/main/fopen_wrappers.c
+++ b/main/fopen_wrappers.c
@@ -412,7 +412,7 @@ PHPAPI FILE *php_fopen_with_path(char *filename, char *mode, char *path, char **
#ifdef PHP_WIN32
if (IS_SLASH(*filename) || (filename[1] == ':')) {
#else
- if (IS_SLASH(*filename) {
+ if (IS_SLASH(*filename)) {
#endif
if (PG(safe_mode)) {
if(PG(doc_root)) {