mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 14:39:37 +00:00
Add const to a couple of casts to silence some of the warnings Bruce
has let loose on us.
This commit is contained in:
parent
7ffe3d1c5d
commit
c988324000
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=30631
@ -22,7 +22,7 @@
|
|||||||
* These notices must be retained in any copies of any part of this
|
* These notices must be retained in any copies of any part of this
|
||||||
* documentation and/or software.
|
* documentation and/or software.
|
||||||
*
|
*
|
||||||
* $Id: md5c.c,v 1.8 1997/02/22 09:39:14 peter Exp $
|
* $Id: md5c.c,v 1.9 1997/08/02 14:31:35 bde Exp $
|
||||||
*
|
*
|
||||||
* This code is the same as the code published by RSA Inc. It has been
|
* This code is the same as the code published by RSA Inc. It has been
|
||||||
* edited for clarity and style only.
|
* edited for clarity and style only.
|
||||||
@ -173,7 +173,7 @@ MD5Update (context, input, inputLen)
|
|||||||
|
|
||||||
/* Transform as many times as possible. */
|
/* Transform as many times as possible. */
|
||||||
if (inputLen >= partLen) {
|
if (inputLen >= partLen) {
|
||||||
memcpy((void *)&context->buffer[index], (void *)input,
|
memcpy((void *)&context->buffer[index], (const void *)input,
|
||||||
partLen);
|
partLen);
|
||||||
MD5Transform (context->state, context->buffer);
|
MD5Transform (context->state, context->buffer);
|
||||||
|
|
||||||
@ -186,7 +186,7 @@ MD5Update (context, input, inputLen)
|
|||||||
i = 0;
|
i = 0;
|
||||||
|
|
||||||
/* Buffer remaining input */
|
/* Buffer remaining input */
|
||||||
memcpy ((void *)&context->buffer[index], (void *)&input[i],
|
memcpy ((void *)&context->buffer[index], (const void *)&input[i],
|
||||||
inputLen-i);
|
inputLen-i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user