(MD5Update): type correctness

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@7134 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1999-10-10 04:58:03 +00:00
parent 363475a4ae
commit c35ed090bc

View File

@@ -285,7 +285,7 @@ MD5Init (MD5_CTX *mdContext)
void
MD5Update (MD5_CTX *mdContext, const unsigned char *inBuf, unsigned int inLen)
{
md5_update(&mdContext->m.d5, (unsigned char *)inBuf, inLen);
md5_update(&mdContext->m.d5, (const unsigned char *)inBuf, inLen);
}
void