X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_filter.c;h=121966b86a6f7292a912d0fc77dc4822595cce59;hp=cdbc4088b4a5edbf8655144376a3eaece71c79c8;hb=4d68865693332389b875e4466f8b5368c0876e15;hpb=8d05291f42b3b42159b3fe91492aa4862f3d4405 diff --git a/php_http_filter.c b/php_http_filter.c index cdbc408..121966b 100644 --- a/php_http_filter.c +++ b/php_http_filter.c @@ -10,7 +10,7 @@ +--------------------------------------------------------------------+ */ -#include "php_http.h" +#include "php_http_api.h" PHP_MINIT_FUNCTION(http_filter) { @@ -401,13 +401,16 @@ static php_stream_filter *http_filter_create(const char *name, zval *params, int if (SUCCESS != zend_hash_find(HASH_OF(params), "flags", sizeof("flags"), (void *) &tmp)) { break; } + /* no break */ default: { zval *num = php_http_ztyp(IS_LONG, *tmp); flags |= (Z_LVAL_P(num) & 0x0fffffff); zval_ptr_dtor(&num); + } + break; } } if ((b = php_http_encoding_stream_init(NULL, php_http_encoding_stream_get_deflate_ops(), flags TSRMLS_CC))) {