]> git.ipfire.org Git - thirdparty/dhcpcd.git/commitdiff
Specify MD5_BLOCK_LENGTH as ULL to try and work around a compiler issue.
authorRoy Marples <roy@marples.name>
Tue, 3 Oct 2017 22:51:17 +0000 (23:51 +0100)
committerRoy Marples <roy@marples.name>
Tue, 3 Oct 2017 22:51:17 +0000 (23:51 +0100)
compat/crypt/md5.h

index 402309c33ae60b0b7ec696226be1120229059f04..dd156163315cd12fa503f31db00091d87e1c5186 100644 (file)
@@ -19,7 +19,7 @@
 #define MD5_H_
 
 #define MD5_DIGEST_LENGTH      16
-#define MD5_BLOCK_LENGTH       64
+#define MD5_BLOCK_LENGTH       64ULL
 
 typedef struct MD5Context {
        uint32_t state[4];      /* state (ABCD) */