]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Correct names of MD5 functions after removing of public names.
authorUlrich Drepper <drepper@redhat.com>
Mon, 25 Oct 1999 22:25:27 +0000 (22:25 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 25 Oct 1999 22:25:27 +0000 (22:25 +0000)
md5-crypt/md5test.c

index abee7887c51f9942fdfc9a4568b5509d1f0cb213..cfd960509999f36c65d406917b294a8d45e48576 100644 (file)
@@ -35,9 +35,9 @@ main (int argc, char *argv[])
 
   for (cnt = 0; cnt < (int) (sizeof (tests) / sizeof (tests[0])); ++cnt)
     {
-      md5_init_ctx (&ctx);
-      md5_process_bytes (tests[cnt].input, strlen (tests[cnt].input), &ctx);
-      md5_finish_ctx (&ctx, sum);
+      __md5_init_ctx (&ctx);
+      __md5_process_bytes (tests[cnt].input, strlen (tests[cnt].input), &ctx);
+      __md5_finish_ctx (&ctx, sum);
       result |= memcmp (tests[cnt].result, sum, 16);
     }