* read_servi.c : s/keytype/enctype/g, s/KEYTYPE/ENCTYPE/g
authorChris Provenzano <proven@mit.edu>
Wed, 6 Sep 1995 19:14:36 +0000 (19:14 +0000)
committerChris Provenzano <proven@mit.edu>
Wed, 6 Sep 1995 19:14:36 +0000 (19:14 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6725 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/keytab/ChangeLog
src/lib/krb5/keytab/read_servi.c

index 4a853fdb7da10a06340184ba68bc87eb4fd1a25a..a76291c80a447ae1415716f11a4cac1920f9936c 100644 (file)
@@ -1,3 +1,6 @@
+Wed Sep 06 14:20:57 1995   Chris Provenzano (proven@mit.edu)
+
+        * read_servi.c : s/keytype/enctype/g, s/KEYTYPE/ENCTYPE/g
 
 Tue Aug 29 13:37:56 EDT 1995   Paul Park       (pjpark@mit.edu)
        * ktbase.c - Add routines to deal with externalizing krb5_keytab.  These
index e18d199b4dd2ce7053d4c801527acee03dc9b50a..a17443461e8e6b5ffc138934874bc40c85d8a8ef 100644 (file)
  * effects: If keyprocarg is not NULL, it is taken to be the name of a 
  *     keytab.  Otherwise, the default keytab will be used.  This 
  *     routine opens the keytab and finds the principal associated with
- *     principal, vno, and keytype and returns the resulting key in *key 
+ *     principal, vno, and enctype and returns the resulting key in *key 
  *     or returning an error code if it is not found. 
  * returns: Either KSUCCESS or error code.
  * errors: error code if not found or keyprocarg is invalid.
  */
 krb5_error_code
-krb5_kt_read_service_key(context, keyprocarg, principal, vno, keytype, key)
+krb5_kt_read_service_key(context, keyprocarg, principal, vno, enctype, key)
     krb5_context context;
     krb5_pointer keyprocarg;
     krb5_principal principal;
     krb5_kvno vno;
-    krb5_keytype keytype;
+    krb5_enctype enctype;
     krb5_keyblock ** key;
 {
     krb5_error_code kerror = KSUCCESS;
@@ -70,7 +70,7 @@ krb5_kt_read_service_key(context, keyprocarg, principal, vno, keytype, key)
     if ((kerror = krb5_kt_resolve(context, (char *)keytabname, &id)))
        return (kerror);
 
-    kerror = krb5_kt_get_entry(context, id, principal, vno, keytype, &entry);
+    kerror = krb5_kt_get_entry(context, id, principal, vno, enctype, &entry);
     krb5_kt_close(context, id);
 
     if (kerror)