From 11975abb2c891e563dbed51a52c050ea0b05b8a4 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Tue, 20 May 2008 08:47:51 +0000 Subject: - remove old-style definitions. No object-code changes. --- libcrypt/md5.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'libcrypt') diff --git a/libcrypt/md5.c b/libcrypt/md5.c index 95286bfba..5580d21ff 100644 --- a/libcrypt/md5.c +++ b/libcrypt/md5.c @@ -275,13 +275,9 @@ static void __md5_Final ( unsigned char digest[16], struct MD5Context *context) /* MD5 basic transformation. Transforms state based on block. */ -static void -__md5_Transform (state, block) - u_int32_t state[4]; - const unsigned char block[64]; +static void __md5_Transform (u_int32_t state[4], const unsigned char block[64]) { u_int32_t a, b, c, d, x[16]; - #if MD5_SIZE_OVER_SPEED > 1 u_int32_t temp; const char *ps; -- cgit v1.2.3