Add keytype argument to rd_req_proc
authorTheodore Tso <tytso@mit.edu>
Fri, 3 Feb 1995 19:19:50 +0000 (19:19 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 3 Feb 1995 19:19:50 +0000 (19:19 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4898 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/user_user/ChangeLog
src/appl/user_user/client.c

index f9121180f60e1c4e5737a513530f0f08fabd47fb..4c195bd5eb1e774ff4e66fe58661166a11f0c19c 100644 (file)
@@ -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
index 956e9c71c751dfeaabb37acef8b1859881162d9a..8f0845d73f4e1d9793859d0ee72d10f82f4988ca 100644 (file)
 #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;