From: Theodore Tso Date: Fri, 3 Feb 1995 19:19:50 +0000 (+0000) Subject: Add keytype argument to rd_req_proc X-Git-Tag: krb5-1.0-beta5~757 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=b3a5af535f58f535bee525e8b978e0c01bb124c4;p=krb5.git Add keytype argument to rd_req_proc git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4898 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/appl/user_user/ChangeLog b/src/appl/user_user/ChangeLog index f9121180f..4c195bd5e 100644 --- a/src/appl/user_user/ChangeLog +++ b/src/appl/user_user/ChangeLog @@ -1,3 +1,7 @@ +Fri Feb 3 11:58:18 1995 Theodore Y. Ts'o (tytso@dcl) + + * client.c: (tgt_keyproc): Add keytype argument to rd_req_proc. + Wed Jan 25 16:54:40 1995 Chris Provenzano (proven@mit.edu) * Removed all narrow types and references to wide.h and narrow.h diff --git a/src/appl/user_user/client.c b/src/appl/user_user/client.c index 956e9c71c..8f0845d73 100644 --- a/src/appl/user_user/client.c +++ b/src/appl/user_user/client.c @@ -38,12 +38,13 @@ #include krb5_error_code -tgt_keyproc(context, keyprocarg, principal, vno, key) +tgt_keyproc(context, keyprocarg, principal, vno, keytype, key) krb5_context context; krb5_pointer keyprocarg; krb5_principal principal; krb5_kvno vno; - krb5_keyblock ** key; + krb5_keytype keytype; + krb5_keyblock ** key; { krb5_creds *creds = (krb5_creds *)keyprocarg;