aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2010-12-14 00:36:23 +0100
committerMatthias Andree <matthias.andree@gmx.de>2010-12-14 00:36:23 +0100
commit6657f423a37794192659f32f1dddfd766e1f0a4f (patch)
tree6fd13ede665287e2fac6381126aa10948e4e327c
parentd19dfa6ee1573633698a5c13efe50dcca5f77a0e (diff)
downloadfetchmail-6657f423a37794192659f32f1dddfd766e1f0a4f.tar.gz
fetchmail-6657f423a37794192659f32f1dddfd766e1f0a4f.tar.bz2
fetchmail-6657f423a37794192659f32f1dddfd766e1f0a4f.zip
Fix MD5Transform argument types to match md5c.c.
-rw-r--r--fm_md5.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fm_md5.h b/fm_md5.h
index 5243c51b..95bb4edd 100644
--- a/fm_md5.h
+++ b/fm_md5.h
@@ -30,7 +30,7 @@ struct MD5Context {
void MD5Init(struct MD5Context *context);
void MD5Update(struct MD5Context *context, const void *buf, unsigned len);
void MD5Final(void *digest, struct MD5Context *context);
-void MD5Transform(uint32 buf[], uint32 const in[]);
+void MD5Transform(uint32 buf[4], uint32 const in[16]);
/*
* This is needed to make RSAREF happy on some MS-DOS compilers.