summaryrefslogtreecommitdiffstats
path: root/lib/libmd/md4.h
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1996-10-22 16:27:47 +0000
committerphk <phk@FreeBSD.org>1996-10-22 16:27:47 +0000
commit2916d56c9d8a14df739e997d1ac2acb0d447e4de (patch)
treeceee8ef517bcd35f7b6a951993b111b7d4fcceab /lib/libmd/md4.h
parent2d7b0aca1c8b4a9fb6358ab448d7b578746afdad (diff)
downloadFreeBSD-src-2916d56c9d8a14df739e997d1ac2acb0d447e4de.zip
FreeBSD-src-2916d56c9d8a14df739e997d1ac2acb0d447e4de.tar.gz
close bin/1648 libmd not 64bit safe.
if something fails to compile now, you need to add #include <sys/types.h> Partially Submitted by: Jason Thorpe <thorpej@nas.nasa.gov>
Diffstat (limited to 'lib/libmd/md4.h')
-rw-r--r--lib/libmd/md4.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libmd/md4.h b/lib/libmd/md4.h
index ea4ec8a..237ecc8 100644
--- a/lib/libmd/md4.h
+++ b/lib/libmd/md4.h
@@ -27,8 +27,8 @@
#define _MD4_H_
/* MD4 context. */
typedef struct MD4Context {
- unsigned long state[4]; /* state (ABCD) */
- unsigned long count[2]; /* number of bits, modulo 2^64 (lsb first) */
+ u_int32_t state[4]; /* state (ABCD) */
+ u_int32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */
unsigned char buffer[64]; /* input buffer */
} MD4_CTX;
OpenPOWER on IntegriCloud