wez             Thu May 27 09:04:14 2004 EDT

  Modified files:              
    /php-src/main/streams       streams.c 
  Log:
  Fix #25939 for good this time.
  # How could I miss this??
  
  
http://cvs.php.net/diff.php/php-src/main/streams/streams.c?r1=1.54&r2=1.55&ty=u
Index: php-src/main/streams/streams.c
diff -u php-src/main/streams/streams.c:1.54 php-src/main/streams/streams.c:1.55
--- php-src/main/streams/streams.c:1.54 Wed Mar 31 20:07:54 2004
+++ php-src/main/streams/streams.c      Thu May 27 09:04:14 2004
@@ -19,7 +19,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: streams.c,v 1.54 2004/04/01 01:07:54 pollita Exp $ */
+/* $Id: streams.c,v 1.55 2004/05/27 13:04:14 wez Exp $ */
 
 #define _GNU_SOURCE
 #include "php.h"
@@ -608,7 +608,7 @@
        /* use the configured timeout when checking eof */
        if (!stream->eof && PHP_STREAM_OPTION_RETURN_ERR ==
                        php_stream_set_option(stream, PHP_STREAM_OPTION_CHECK_LIVENESS,
-                       -1, NULL)) {
+                       0, NULL)) {
                stream->eof = 1;
        }
 

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to