From: Ilia Alshanetsky Date: Tue, 4 Mar 2003 16:20:24 +0000 (+0000) Subject: Compiler warning fix. X-Git-Tag: php-4.3.2RC1~69 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=276a43792c86d012923f3decdb190514faccc78b;p=php Compiler warning fix. --- 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; }