diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-12-14 00:36:23 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-12-14 00:36:23 +0100 |
commit | 6657f423a37794192659f32f1dddfd766e1f0a4f (patch) | |
tree | 6fd13ede665287e2fac6381126aa10948e4e327c | |
parent | d19dfa6ee1573633698a5c13efe50dcca5f77a0e (diff) | |
download | fetchmail-6657f423a37794192659f32f1dddfd766e1f0a4f.tar.gz fetchmail-6657f423a37794192659f32f1dddfd766e1f0a4f.tar.bz2 fetchmail-6657f423a37794192659f32f1dddfd766e1f0a4f.zip |
Fix MD5Transform argument types to match md5c.c.
-rw-r--r-- | fm_md5.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |