From 1b80a9c6146c539873d7b4cf5a661a3392b155e9 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Mon, 3 May 2004 18:07:08 +0000 Subject: Some u_char -> u_int8_t conversion I missed earlier. --- lib/libc/hash/md4.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/libc/hash/md4.c') diff --git a/lib/libc/hash/md4.c b/lib/libc/hash/md4.c index da92290cff0..a1006dbf7cb 100644 --- a/lib/libc/hash/md4.c +++ b/lib/libc/hash/md4.c @@ -1,4 +1,4 @@ -/* $OpenBSD: md4.c,v 1.4 2004/05/03 17:30:14 millert Exp $ */ +/* $OpenBSD: md4.c,v 1.5 2004/05/03 18:07:07 millert Exp $ */ /* * This code implements the MD4 message-digest algorithm. @@ -19,7 +19,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: md4.c,v 1.4 2004/05/03 17:30:14 millert Exp $"; +static const char rcsid[] = "$OpenBSD: md4.c,v 1.5 2004/05/03 18:07:07 millert Exp $"; #endif /* LIBC_SCCS and not lint */ #include @@ -42,7 +42,7 @@ static const char rcsid[] = "$OpenBSD: md4.c,v 1.4 2004/05/03 17:30:14 millert E (cp)[1] = (value) >> 8; \ (cp)[0] = (value); } while (0) -static u_char PADDING[MD4_BLOCK_LENGTH] = { +static u_int8_t PADDING[MD4_BLOCK_LENGTH] = { 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -- cgit v1.2.3