summaryrefslogtreecommitdiffstats
path: root/src/windows/cns
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows/cns')
-rw-r--r--src/windows/cns/changelo4
-rw-r--r--src/windows/cns/kpasswd.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/src/windows/cns/changelo b/src/windows/cns/changelo
index 721abbdba1..ce3cae9c23 100644
--- a/src/windows/cns/changelo
+++ b/src/windows/cns/changelo
@@ -1,3 +1,7 @@
+
+Mon Jun 5 14:19:51 EDT 1995 Paul Park (pjpark@mit.edu)
+ * kpasswd.c : Use new krb5_adm_connect() calling sequence.
+
Fri Jun 2 11:45:23 1995 Keith Vetter (keithv@fusion.com)
* makefile: cleaned up and made consistent with telnet's makefile.
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;
/*