From: Jeff Trawick Date: Thu, 30 May 2002 11:00:42 +0000 (+0000) Subject: keep the signed-ness of char buffers consistent with what is expected X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2c395162d942d62f777d1acb3e0f490ff18c4066;p=apache 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 --- 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 */