From: Ulrich Drepper Date: Mon, 25 Oct 1999 22:25:27 +0000 (+0000) Subject: Correct names of MD5 functions after removing of public names. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=40d8b73e44c9a8ea7b3c64e6fffb7e6d6369371e;p=thirdparty%2Fglibc.git Correct names of MD5 functions after removing of public names. --- diff --git a/md5-crypt/md5test.c b/md5-crypt/md5test.c index abee7887c51..cfd96050999 100644 --- a/md5-crypt/md5test.c +++ b/md5-crypt/md5test.c @@ -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); }