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-Tag: 2.0.37~166 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e75d8b7d01c14e4d8e5fca5c51ee1a257a32e9da;p=thirdparty%2Fapache%2Fhttpd.git 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 25fda5822bd..2e6f4b670c5 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 */