diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-10-25 22:13:19 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-10-25 22:13:19 +0000 |
commit | 654de60c0091730037a70336d2632bababf5d730 (patch) | |
tree | 7f34c5ff62119b6343a87f9aff70c1f95e961032 /md5-crypt | |
parent | 86cfe82d03d4930c3aedbf042da79f5aa005b7ac (diff) | |
download | glibc-654de60c0091730037a70336d2632bababf5d730.tar glibc-654de60c0091730037a70336d2632bababf5d730.tar.gz glibc-654de60c0091730037a70336d2632bababf5d730.tar.bz2 glibc-654de60c0091730037a70336d2632bababf5d730.zip |
Update.
* md5-crypt/md5test.c: Correct names of MD5 functions after
removing of public names.
Diffstat (limited to 'md5-crypt')
-rw-r--r-- | md5-crypt/md5test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/md5-crypt/md5test.c b/md5-crypt/md5test.c index abee7887c5..cfd9605099 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); } |