From 276a43792c86d012923f3decdb190514faccc78b Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Tue, 4 Mar 2003 16:20:24 +0000 Subject: [PATCH] Compiler warning fix. --- main/streams.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/streams.c b/main/streams.c index d709e3e024..60ff2954b3 100755 --- a/main/streams.c +++ b/main/streams.c @@ -2208,7 +2208,7 @@ static php_stream *php_plain_files_stream_opener(php_stream_wrapper *wrapper, ch return php_stream_fopen_with_path_rel(path, mode, PG(include_path), opened_path, options); } - if ((options & STREAM_DISABLE_OPEN_BASEDIR == 0) && php_check_open_basedir(path TSRMLS_CC)) { + if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(path TSRMLS_CC)) { return NULL; } -- 2.50.1