From ccf0d79b2a55614e40afc6ad6dff231a86df4a70 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Wed, 1 Oct 2008 19:45:21 +0200 Subject: [PATCH] Forgot to adapt retros.c to the new MD5 interface. --- debug/sorter/retros.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debug/sorter/retros.c b/debug/sorter/retros.c index 073cd8b0..ea6de037 100644 --- a/debug/sorter/retros.c +++ b/debug/sorter/retros.c @@ -618,8 +618,8 @@ static void mk_ary(void) { ary = array0; alt = array1; - struct MD5Context ctx; - MD5Init(&ctx); + md5_context ctx; + md5_init(&ctx); u32 block[16]; bzero(block, sizeof(block)); @@ -630,7 +630,7 @@ static void mk_ary(void) if (!(i % 4)) { block[i%16] = i; - MD5Transform(ctx.buf, block); + md5_transform(ctx.buf, block); } ary[i].key = ctx.buf[i%4]; #else -- 2.39.2