summaryrefslogtreecommitdiffstats
path: root/sys/kern/md5c.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/md5c.c')
-rw-r--r--sys/kern/md5c.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/kern/md5c.c b/sys/kern/md5c.c
index 10fb7a3..c6d1252 100644
--- a/sys/kern/md5c.c
+++ b/sys/kern/md5c.c
@@ -145,12 +145,13 @@ MD5Init (context)
*/
void
-MD5Update (context, input, inputLen)
+MD5Update (context, in, inputLen)
MD5_CTX *context;
- const unsigned char *input;
+ const void *in;
unsigned int inputLen;
{
unsigned int i, index, partLen;
+ const unsigned char *input = in;
/* Compute number of bytes mod 64 */
index = (unsigned int)((context->count[0] >> 3) & 0x3F);
OpenPOWER on IntegriCloud