From fcb74b8920213d7cc0c01e35cf47b81e29f0109b Mon Sep 17 00:00:00 2001 From: Paul Park Date: Mon, 5 Jun 1995 18:27:15 +0000 Subject: Use new krb5_adm_connect() calling sequence git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5947 dc483132-0cff-0310-8789-dd5450dbe970 --- src/windows/cns/kpasswd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/windows/cns/kpasswd.c') diff --git a/src/windows/cns/kpasswd.c b/src/windows/cns/kpasswd.c index 2a79b84f70..93939e095d 100644 --- a/src/windows/cns/kpasswd.c +++ b/src/windows/cns/kpasswd.c @@ -130,12 +130,13 @@ k5_change_password ( if (name == NULL) return ENOMEM; sprintf (name, "%s@%s", user, realm); + ccache = (krb5_ccache) NULL; /* ** Establish the connection. */ kret = krb5_adm_connect (k5context, name, NULL, opasswd, &conn_socket, - &auth_context, &ccache); + &auth_context, &ccache, NULL, 0); if (kret) goto done; /* -- cgit