diff options
author | Theodore Tso <tytso@mit.edu> | 1995-02-03 19:19:50 +0000 |
---|---|---|
committer | Theodore Tso <tytso@mit.edu> | 1995-02-03 19:19:50 +0000 |
commit | b3a5af535f58f535bee525e8b978e0c01bb124c4 (patch) | |
tree | 583f49f4a8ead1a72723a9c47b40268fd88600bc /src/appl | |
parent | b1a4093522e4eeec4fc6b44b05f60804bea80ed1 (diff) | |
download | krb5-b3a5af535f58f535bee525e8b978e0c01bb124c4.tar.gz krb5-b3a5af535f58f535bee525e8b978e0c01bb124c4.tar.xz krb5-b3a5af535f58f535bee525e8b978e0c01bb124c4.zip |
Add keytype argument to rd_req_proc
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4898 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/appl')
-rw-r--r-- | src/appl/user_user/ChangeLog | 4 | ||||
-rw-r--r-- | src/appl/user_user/client.c | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/appl/user_user/ChangeLog b/src/appl/user_user/ChangeLog index f9121180f6..4c195bd5eb 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 956e9c71c7..8f0845d73f 100644 --- a/src/appl/user_user/client.c +++ b/src/appl/user_user/client.c @@ -38,12 +38,13 @@ #include <com_err.h> 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; |