NSS uses unsigned int, not size_t for hash lengths

- broke ppc64 in entertaining ways...
This commit is contained in:
Panu Matilainen 2008-07-12 17:57:51 +03:00
parent 6cf51345a4
commit b256dc9e25
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ int
rpmDigestFinal(DIGEST_CTX ctx, void ** datap, size_t *lenp, int asAscii)
{
unsigned char * digest;
size_t digestlen;
unsigned int digestlen;
if (ctx == NULL)
return -1;