iliaa Sat Nov 16 19:11:20 2002 EDT Modified files: (Branch: PHP_4_3) /php4/main streams.c Log: Fix compile warning. Index: php4/main/streams.c diff -u php4/main/streams.c:1.125.2.8 php4/main/streams.c:1.125.2.9 --- php4/main/streams.c:1.125.2.8 Sat Nov 16 19:08:42 2002 +++ php4/main/streams.c Sat Nov 16 19:11:19 2002 @@ -20,7 +20,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: streams.c,v 1.125.2.8 2002/11/17 00:08:42 wez Exp $ */ +/* $Id: streams.c,v 1.125.2.9 2002/11/17 00:11:19 iliaa Exp $ */ #define _GNU_SOURCE #include "php.h" @@ -2370,7 +2370,7 @@ *newstream = NULL; - if ((flags & PHP_STREAM_FORCE_CONVERSION == 0) && origstream->ops->seek != NULL) { + if (((flags & PHP_STREAM_FORCE_CONVERSION) == 0) && origstream->ops->seek != +NULL) { *newstream = origstream; return PHP_STREAM_UNCHANGED; }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php