If reading in a version 3 credentials cache, ignore the second enctype
authorTheodore Tso <tytso@mit.edu>
Thu, 11 Jan 1996 02:17:17 +0000 (02:17 +0000)
committerTheodore Tso <tytso@mit.edu>
Thu, 11 Jan 1996 02:17:17 +0000 (02:17 +0000)
stored in the ccache; just read it into a dummy variable.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7290 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/ccache/file/ChangeLog
src/lib/krb5/ccache/file/fcc_read.c

index 9d8e8662dc088785872f88d058e7d4e60d83ad3b..43b2976dfd78e84e6f22ee748c88e7f77210f5d3 100644 (file)
@@ -1,3 +1,9 @@
+Wed Jan 10 21:14:31 1996  Theodore Y. Ts'o  <tytso@dcl>
+
+       * fcc_read.c (krb5_fcc_read_keyblock): If reading in a version 3
+               credentials cache, ignore the second enctype stored in the
+               ccache; just read it into a dummy variable.
+
 Thu Dec 21 18:28:09 1995  Theodore Y. Ts'o  <tytso@dcl>
 
        * fcc_maybe.c (krb5_fcc_open_file): In the case of
index 41395f14f775090079cfd2e4a2ffedbd06a29cac..aa2cba8ea50012f3f29bdf3006b6d9f33e89408c 100644 (file)
@@ -208,7 +208,7 @@ krb5_fcc_read_keyblock(context, id, keyblock)
      CHECK(kret);
      if (data->version == KRB5_FCC_FVNO_3) {
             kret = krb5_fcc_read_ui_2(context, id, &ui2);
-            keyblock->enctype = ui2;
+            /* keyblock->enctype = ui2; */
             CHECK(kret);
      }