Add ldap_ prefix to md5 calls.

Patch submitted by Chris Smith <csmith@platform.com>
This commit is contained in:
Kurt Zeilenga 1998-09-16 19:03:22 +00:00
parent 007cbfc8f1
commit c246205958

View File

@ -72,9 +72,9 @@ crypted_value_find(
char *userpassword = vals[i]->bv_val + sizeof("{MD5}") - 1;
MD5Init(&MD5context);
MD5Update(&MD5context, cred->bv_val, strlen(cred->bv_val));
MD5Final(MD5digest, &MD5context);
ldap_MD5Init(&MD5context);
ldap_MD5Update(&MD5context, cred->bv_val, strlen(cred->bv_val));
ldap_MD5Final(MD5digest, &MD5context);
if (b64_ntop(MD5digest, sizeof(MD5digest),
base64digest, sizeof(base64digest)) < 0)