+Mon Jun 5 13:48:23 EDT 1995 Paul Park (pjpark@mit.edu)
+ * kpasswd.c - Change argument list to krb5_adm_connect() for new
+ calling sequence. We take the defaults here.
+
+
Tue May 9 15:27:36 EDT 1995 Paul Park (pjpark@mit.edu)
Fix compiler warnings.
opassword,
&conn_socket,
&auth_context,
- &ccache)) {
+ &ccache,
+ (char *) NULL,
+ 0)) {
switch (kret) {
case KRB5KDC_ERR_C_PRINCIPAL_UNKNOWN:
fprintf(stderr, kpwd_bad_client_fmt, argv[0],
+
+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.
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;
/*