From f319444df0d6de328ba5170263bfaed0c61c887d Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Wed, 6 Sep 2000 18:21:39 +0000 Subject: [PATCH] MIT Kerberos and krb5_free_creds_contents (ITS#715) fix suggested by Norbert Klasen --- libraries/liblutil/passwd.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libraries/liblutil/passwd.c b/libraries/liblutil/passwd.c index eca2ff12b1..427af165a0 100644 --- a/libraries/liblutil/passwd.c +++ b/libraries/liblutil/passwd.c @@ -48,6 +48,8 @@ #include +#include "ldap_pvt.h" + #include "lutil_md5.h" #include "lutil_sha1.h" #include "lutil.h" @@ -751,7 +753,7 @@ static int chk_kerberos( krb5_free_principal( context, client ); krb5_free_principal( context, server ); - krb5_free_creds_contents( context, &creds ); + krb5_free_cred_contents( context, &creds ); krb5_free_context( context ); rtn = !!ret; -- 2.39.5