summaryrefslogtreecommitdiffstats
path: root/lib/libmd/md2c.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libmd/md2c.c')
-rw-r--r--lib/libmd/md2c.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libmd/md2c.c b/lib/libmd/md2c.c
index c08fe0b..4799457 100644
--- a/lib/libmd/md2c.c
+++ b/lib/libmd/md2c.c
@@ -99,12 +99,13 @@ MD2_CTX *context; /* context */
operation, processing another message block, and updating the
context.
*/
-void MD2Update (context, input, inputLen)
+void MD2Update (context, in, inputLen)
MD2_CTX *context; /* context */
-const unsigned char *input; /* input block */
+const void *in; /* input block */
unsigned int inputLen; /* length of input block */
{
unsigned int i, idx, partLen;
+ const unsigned char *input = in;
/* Update number of bytes mod 16 */
idx = context->count;
OpenPOWER on IntegriCloud