From: Nuno Lopes Date: Thu, 18 Jan 2007 16:05:48 +0000 (+0000) Subject: only 2 bits are needed for shutdown(2) method (only 3 possible values). this is new... X-Git-Tag: php-5.2.1RC3~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=58d4b44ae757121c33460061b43e653110125759;p=php 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.. --- diff --git a/main/streams/php_stream_transport.h b/main/streams/php_stream_transport.h index c8a9837056..b5ffe152cb 100644 --- a/main/streams/php_stream_transport.h +++ b/main/streams/php_stream_transport.h @@ -133,7 +133,7 @@ typedef struct _php_stream_xport_param { 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;