aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/md5/md5_locl.h
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-09-06 09:29:29 +0000
committerBen Laurie <ben@openssl.org>1999-09-06 09:29:29 +0000
commit232616efce79504eb0a950ff45960049ed92f230 (patch)
tree89ac372f1a532a4e34eb34c6e24bd9dcb13b6ae0 /crypto/md5/md5_locl.h
parenta32640b0f4c681c69c97def95c3e7995c80c77f3 (diff)
downloadopenssl-232616efce79504eb0a950ff45960049ed92f230.tar.gz
Fix warnings.
Diffstat (limited to 'crypto/md5/md5_locl.h')
-rw-r--r--crypto/md5/md5_locl.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/crypto/md5/md5_locl.h b/crypto/md5/md5_locl.h
index 84723439e0..da40a6206b 100644
--- a/crypto/md5/md5_locl.h
+++ b/crypto/md5/md5_locl.h
@@ -113,11 +113,11 @@ void md5_block_data_order (MD5_CTX *c, const void *p,int num);
#define HASH_TRANSFORM MD5_Transform
#define HASH_FINAL MD5_Final
#define HASH_MAKE_STRING(c,s) do { \
- unsigned long l; \
- l=(c)->A; HOST_l2c(l,(s)); \
- l=(c)->B; HOST_l2c(l,(s)); \
- l=(c)->C; HOST_l2c(l,(s)); \
- l=(c)->D; HOST_l2c(l,(s)); \
+ unsigned long ll; \
+ ll=(c)->A; HOST_l2c(ll,(s)); \
+ ll=(c)->B; HOST_l2c(ll,(s)); \
+ ll=(c)->C; HOST_l2c(ll,(s)); \
+ ll=(c)->D; HOST_l2c(ll,(s)); \
} while (0)
#define HASH_BLOCK_HOST_ORDER md5_block_host_order
#if !defined(L_ENDIAN) || defined(md5_block_data_order)