2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

signed vs unsigned char.

This commit is contained in:
Mark Andrews
2000-06-08 06:16:09 +00:00
parent 0aa8742ace
commit db06b81059

View File

@@ -16,7 +16,7 @@
*/ */
/* /*
* $Id: tkey.c,v 1.43 2000/06/07 02:33:46 bwelling Exp $ * $Id: tkey.c,v 1.44 2000/06/08 06:16:09 marka Exp $
* Principal Author: Brian Wellington * Principal Author: Brian Wellington
*/ */
@@ -153,7 +153,7 @@ compute_secret(isc_buffer_t *shared, isc_region_t *queryrandomness,
{ {
isc_md5_t md5ctx; isc_md5_t md5ctx;
isc_region_t r, r2; isc_region_t r, r2;
char digests[32]; unsigned char digests[32];
unsigned int i; unsigned int i;
isc_buffer_usedregion(shared, &r); isc_buffer_usedregion(shared, &r);