summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--passwd/apr_md5.c2
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];