diff options
author | ben <ben@13f79535-47bb-0310-9956-ffa450edef68> | 2001-06-03 11:15:30 +0000 |
---|---|---|
committer | ben <ben@13f79535-47bb-0310-9956-ffa450edef68> | 2001-06-03 11:15:30 +0000 |
commit | 394abf6d3fab784f51cf21eb2ba6c89609d45644 (patch) | |
tree | 4dcaab26052b83dc2889bcb61aaf2bdad447804c /passwd | |
parent | e48c68e53768a91271e5fa76367f845917a3bb99 (diff) | |
download | libapr-394abf6d3fab784f51cf21eb2ba6c89609d45644.tar.gz |
Lurking out-of-date type.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61691 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'passwd')
-rw-r--r-- | passwd/apr_md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/passwd/apr_md5.c b/passwd/apr_md5.c index b75626a96..d507dfd1a 100644 --- a/passwd/apr_md5.c +++ b/passwd/apr_md5.c @@ -346,7 +346,7 @@ APR_DECLARE(apr_status_t) apr_md5_final(unsigned char digest[MD5_DIGESTSIZE], } /* MD5 basic transformation. Transforms state based on block. */ -static void MD5Transform(UINT4 state[4], const unsigned char block[64]) +static void MD5Transform(apr_uint32_t state[4], const unsigned char block[64]) { apr_uint32_t a = state[0], b = state[1], c = state[2], d = state[3], x[MD5_DIGESTSIZE]; |