X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=src%2Fphp_http_filter.c;h=52d2b03f584774f931369028cba53d00de8c3987;hp=608221ba1fe5ccdabb9c498d2af65c0078d7e354;hb=82923890d9ce44a0642ac2f5ea0cb343aaf50fe3;hpb=09adf94af10476aed79e15ab6f7f887771df1633 diff --git a/src/php_http_filter.c b/src/php_http_filter.c index 608221b..52d2b03 100644 --- a/src/php_http_filter.c +++ b/src/php_http_filter.c @@ -72,7 +72,7 @@ PHP_MINIT_FUNCTION(http_filter) typedef struct _http_chunked_decode_filter_buffer_t { php_http_buffer_t buffer; - ulong hexlen; + unsigned long hexlen; } PHP_HTTP_FILTER_BUFFER(chunked_decode); typedef php_http_encoding_stream_t PHP_HTTP_FILTER_BUFFER(stream); @@ -452,9 +452,9 @@ static php_stream_filter *http_filter_create(const char *name, zval *params, int php_http_encoding_stream_free(&b); } } +#if PHP_HTTP_HAVE_LIBBROTLI } else -#if PHP_HTTP_HAVE_LIBBROTLI if (!strcasecmp(name, "http.brotli_encode")) { PHP_HTTP_FILTER_BUFFER(stream) *b = NULL; @@ -473,8 +473,8 @@ static php_stream_filter *http_filter_create(const char *name, zval *params, int php_http_encoding_stream_free(&b); } } - } #endif + } return f; }