From: qjb Date: Mon, 1 Aug 1988 00:42:54 +0000 (+0000) Subject: Changed names of kerberos calls to new names from old ones. X-Git-Tag: KREL1~318 X-Git-Url: http://andersk.mit.edu/gitweb/moira.git/commitdiff_plain/e5fdb505321acd188b5e0a16b71e760f1f0511dd Changed names of kerberos calls to new names from old ones. --- diff --git a/reg_svr/admin_call.c b/reg_svr/admin_call.c index 8348e2ee..e84c1601 100644 --- a/reg_svr/admin_call.c +++ b/reg_svr/admin_call.c @@ -11,10 +11,13 @@ * Completely gutted and rewritten by Bill Sommerfeld, August 1987 * * $Log$ - * Revision 1.4 1987-09-09 14:59:06 wesommer - * Allocate a new socket each time rather than keeping one around, - * due to protocol problems. + * Revision 1.5 1988-08-01 00:42:54 qjb + * Changed names of kerberos calls to new names from old ones. * + * Revision 1.4 87/09/09 14:59:06 wesommer + * Allocate a new socket each time rather than keeping one around, + * due to protocol problems. + * * Revision 1.3 87/09/04 22:30:34 wesommer * Un-crock the KDC host (oops -- this one got distributed!!). * @@ -192,7 +195,7 @@ admin_call(opcode, pname, old_passwd, new_passwd, crypt_passwd) * find our session key. */ - if (status = get_credentials("changepw", "kerberos", krbrlm, &cred)) { + if (status = krb_get_cred("changepw", "kerberos", krbrlm, &cred)) { status += krb_err_base; goto bad; } @@ -243,7 +246,7 @@ admin_call(opcode, pname, old_passwd, new_passwd, crypt_passwd) * Since this contains passwords, it must be kept from prying eyes. */ - sealed_len = mk_private_msg(pvt_buf, sealed_buf, pvt_len, + sealed_len = krb_mk_priv(pvt_buf, sealed_buf, pvt_len, sess_sched, sess_key, &my_addr, &admin_addr); if (sealed_len < 0) { @@ -262,7 +265,7 @@ admin_call(opcode, pname, old_passwd, new_passwd, crypt_passwd) * and know who we are. */ - if (status = mk_ap_req(&authent, "changepw", "kerberos", krbrlm, + if (status = krb_mk_req(&authent, "changepw", "kerberos", krbrlm, checksum)) { status += krb_err_base; goto bad; @@ -358,7 +361,7 @@ admin_call(opcode, pname, old_passwd, new_passwd, crypt_passwd) goto bad; } } - status = rd_private_msg(reply.dat, reply.length, + status = krb_rd_priv(reply.dat, reply.length, sess_sched, sess_key, &admin_addr, &my_addr, &msg_data);