diff options
author | Ben Laurie <ben@openssl.org> | 1999-09-06 11:29:29 +0200 |
---|---|---|
committer | Ben Laurie <ben@openssl.org> | 1999-09-06 11:29:29 +0200 |
commit | 232616efce79504eb0a950ff45960049ed92f230 (patch) | |
tree | 89ac372f1a532a4e34eb34c6e24bd9dcb13b6ae0 /crypto/md5 | |
parent | Reinitialize conf to NULL whenver ca application is started. (diff) | |
download | openssl-232616efce79504eb0a950ff45960049ed92f230.tar.xz openssl-232616efce79504eb0a950ff45960049ed92f230.zip |
Fix warnings.
Diffstat (limited to 'crypto/md5')
-rw-r--r-- | crypto/md5/md5_locl.h | 10 |
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) |