summaryrefslogtreecommitdiffstats
path: root/crypto/md4
diff options
context:
space:
mode:
authorPatrick Steuer <patrick.steuer@de.ibm.com>2019-10-31 14:17:31 +0100
committerPatrick Steuer <patrick.steuer@de.ibm.com>2019-11-01 15:58:00 +0100
commit351ba5bd27645d5b5a2bc643b2709bd30bcdf09c (patch)
treec76300d65bfb8340a50d020482f53318761ece40 /crypto/md4
parent6624e1f7b6a397948561e9cc2774f0c8af1d2c79 (diff)
md4/md5: macros should not include the line following them
Signed-off-by: Patrick Steuer <patrick.steuer@de.ibm.com> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10311)
Diffstat (limited to 'crypto/md4')
-rw-r--r--crypto/md4/md4_local.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/md4/md4_local.h b/crypto/md4/md4_local.h
index 58c23e1ad6..66aa5e4038 100644
--- a/crypto/md4/md4_local.h
+++ b/crypto/md4/md4_local.h
@@ -53,7 +53,7 @@ void md4_block_data_order(MD4_CTX *c, const void *p, size_t num);
#define R1(a,b,c,d,k,s,t) { \
a+=((k)+(t)+G((b),(c),(d))); \
- a=ROTATE(a,s); };\
+ a=ROTATE(a,s); };
#define R2(a,b,c,d,k,s,t) { \
a+=((k)+(t)+H((b),(c),(d))); \