diff options
author | Nuno Lopes <nlopess@php.net> | 2007-01-18 16:05:48 +0000 |
---|---|---|
committer | Nuno Lopes <nlopess@php.net> | 2007-01-18 16:05:48 +0000 |
commit | 58d4b44ae757121c33460061b43e653110125759 (patch) | |
tree | 88824cdb87ace9f39ea046207e5f90646ff03b5a | |
parent | 5f12c71382f64c585a57a48c476d82bf92ba88e8 (diff) | |
download | php-git-58d4b44ae757121c33460061b43e653110125759.tar.gz |
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..
-rw-r--r-- | main/streams/php_stream_transport.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |