Software /
code /
prosody
Diff
util-src/hashes.c @ 5774:6ef79af0c445 0.9.0
util.hashes: Silence compiler warning about pointer signedness
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 09 Aug 2013 16:03:17 +0200 |
parent | 5768:c892709f035d |
child | 6411:6c8f6364bc48 |
line wrap: on
line diff
--- a/util-src/hashes.c Tue Aug 06 14:32:31 2013 +0200 +++ b/util-src/hashes.c Fri Aug 09 16:03:17 2013 +0200 @@ -79,7 +79,7 @@ }; int i; - char hashedKey[64]; /* Maximum used digest length */ + unsigned char hashedKey[64]; /* Maximum used digest length */ union xory k_ipad, k_opad; if (key_len > 64) {