nlopess         Thu Jan 18 16:05:48 2007 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/main/streams       php_stream_transport.h 
  Log:
  only 2 bits are needed for shutdown(2) method (only 3 possible values). this 
is new code in 5.2.1, so don't worry..
  
http://cvs.php.net/viewvc.cgi/php-src/main/streams/php_stream_transport.h?r1=1.10.2.1.2.2&r2=1.10.2.1.2.3&diff_format=u
Index: php-src/main/streams/php_stream_transport.h
diff -u php-src/main/streams/php_stream_transport.h:1.10.2.1.2.2 
php-src/main/streams/php_stream_transport.h:1.10.2.1.2.3
--- php-src/main/streams/php_stream_transport.h:1.10.2.1.2.2    Mon Jan  1 
09:36:12 2007
+++ php-src/main/streams/php_stream_transport.h Thu Jan 18 16:05:48 2007
@@ -16,7 +16,7 @@
   +----------------------------------------------------------------------+
 */
 
-/* $Id: php_stream_transport.h,v 1.10.2.1.2.2 2007/01/01 09:36:12 sebastian 
Exp $ */
+/* $Id: php_stream_transport.h,v 1.10.2.1.2.3 2007/01/18 16:05:48 nlopess Exp 
$ */
 
 #if HAVE_SYS_SOCKET_H
 # include <sys/socket.h>
@@ -133,7 +133,7 @@
        unsigned int want_addr:1;
        unsigned int want_textaddr:1;
        unsigned int want_errortext:1;
-       stream_shutdown_t how:3;
+       stream_shutdown_t how:2;
 
        struct {
                char *name;

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

Reply via email to