diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2006-01-11 10:51:28 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2006-01-11 10:51:28 +0000 |
commit | 7ff1619df0d9c4fc58119bd23e8e6904679db8b6 (patch) | |
tree | 40990bea5032b5330125ece444a854efa5ac1f56 /md5.h | |
parent | fa8953f9f0852d1bc9baaee927500a98998fb97b (diff) | |
download | fetchmail-7ff1619df0d9c4fc58119bd23e8e6904679db8b6.tar.gz fetchmail-7ff1619df0d9c4fc58119bd23e8e6904679db8b6.tar.bz2 fetchmail-7ff1619df0d9c4fc58119bd23e8e6904679db8b6.zip |
Fix a few compiler warnings through casts.
Make MD5Update argument const.
svn path=/branches/BRANCH_6-3/; revision=4621
Diffstat (limited to 'md5.h')
-rw-r--r-- | md5.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ void MD5Update(struct MD5Context *context, unsigned char const *buf, void MD5Final(unsigned char digest[16], struct MD5Context *context); void MD5Transform(uint32 buf[4], uint32 const in[16]); -char *MD5Digest (unsigned char *s); +char *MD5Digest (unsigned const char *s); /* * This is needed to make RSAREF happy on some MS-DOS compilers. |