]> mj.ucw.cz Git - libucw.git/commitdiff
Forgot to adapt retros.c to the new MD5 interface.
authorMartin Mares <mj@ucw.cz>
Wed, 1 Oct 2008 17:45:21 +0000 (19:45 +0200)
committerMartin Mares <mj@ucw.cz>
Wed, 1 Oct 2008 17:45:21 +0000 (19:45 +0200)
debug/sorter/retros.c

index 073cd8b078e32c94174494ccada181af56d97671..ea6de037ea0ddf662bd8e8d0123797e80f79f1f5 100644 (file)
@@ -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