1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

Oops. Hack up the macro some more so it compiles properly.

svn path=/trunk/icecast/; revision=5878
This commit is contained in:
Michael Smith 2004-03-02 00:10:58 +00:00
parent 398dfff59d
commit fa8ceacb5c

View File

@ -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<<s) | (w>>(32-s)); w += x )
# define MD5STEP(f, w, x, y, z, data, s) w += f(x, y, z) + data; w = (w<<s) | (w>>(32-s)); w += x
/*
* The core of the MD5 algorithm, this alters an existing MD5 hash to