From e75d8b7d01c14e4d8e5fca5c51ee1a257a32e9da Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Thu, 30 May 2002 11:00:42 +0000 Subject: [PATCH] keep the signed-ness of char buffers consistent with what is expected by functions they are passed to (putLong() this time) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95399 13f79535-47bb-0310-9956-ffa450edef68 --- modules/filters/mod_deflate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/filters/mod_deflate.c b/modules/filters/mod_deflate.c index 25fda5822b..2e6f4b670c 100644 --- a/modules/filters/mod_deflate.c +++ b/modules/filters/mod_deflate.c @@ -380,7 +380,7 @@ static apr_status_t deflate_out_filter(ap_filter_t *f, if (APR_BUCKET_IS_EOS(e)) { char *buf, *p; - char crc_array[4], len_array[4]; + unsigned char crc_array[4], len_array[4]; unsigned int deflate_len; ctx->stream.avail_in = 0; /* should be zero already anyway */ -- 2.40.0