From fa8ceacb5c373b6ce9d052c17bb9ca0d09e9397c Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Tue, 2 Mar 2004 00:10:58 +0000 Subject: [PATCH] Oops. Hack up the macro some more so it compiles properly. svn path=/trunk/icecast/; revision=5878 --- src/md5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/md5.c b/src/md5.c index 7ca85e0d..ee93203c 100644 --- a/src/md5.c +++ b/src/md5.c @@ -185,7 +185,7 @@ void MD5Final(unsigned char digest[HASH_LEN], struct MD5Context *ctx) # define F4(x, y, z) (y ^ (x | ~z)) /* This is the central step in the MD5 algorithm. */ -# define MD5STEP(f, w, x, y, z, data, s) ( w += f(x, y, z) + data; w = (w<>(32-s)); w += x ) +# define MD5STEP(f, w, x, y, z, data, s) w += f(x, y, z) + data; w = (w<>(32-s)); w += x /* * The core of the MD5 algorithm, this alters an existing MD5 hash to