diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2012-08-14 22:52:46 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2012-08-14 22:52:46 +0200 |
commit | 08c75fa2b17a2d81328abaa866e9b7534a5bcee6 (patch) | |
tree | f59fdf03c3926059883e4fe13575bf4969ffb733 /fm_md5.h | |
parent | b0cd8b7a095f7b3968f55cbf9efe2075c7ee9677 (diff) | |
download | fetchmail-08c75fa2b17a2d81328abaa866e9b7534a5bcee6.tar.gz fetchmail-08c75fa2b17a2d81328abaa866e9b7534a5bcee6.tar.bz2 fetchmail-08c75fa2b17a2d81328abaa866e9b7534a5bcee6.zip |
Fix compiler aliasing warning.
Diffstat (limited to 'fm_md5.h')
-rw-r--r-- | fm_md5.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -16,7 +16,10 @@ typedef unsigned long int uint32; struct MD5Context { uint32 buf[4]; uint32 bits[2]; - unsigned char in[64]; + union { + unsigned char in[64]; + uint32 in32[16]; + } u; }; void MD5Init(struct MD5Context *context); |