diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-05-03 18:07:08 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-05-03 18:07:08 +0000 |
commit | 1b80a9c6146c539873d7b4cf5a661a3392b155e9 (patch) | |
tree | ae26ce02b406b7042b18fde73f71ac23ff011e46 /lib/libc/hash/md4.c | |
parent | b8664c21d4b0054f7cf06a77af50d464a9ec4974 (diff) |
Some u_char -> u_int8_t conversion I missed earlier.
Diffstat (limited to 'lib/libc/hash/md4.c')
-rw-r--r-- | lib/libc/hash/md4.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 <sys/types.h> @@ -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 |