Make it more obvious that default ticket lifetimes is not yet
authorTheodore Tso <tytso@mit.edu>
Thu, 31 Oct 1996 18:57:20 +0000 (18:57 +0000)
committerTheodore Tso <tytso@mit.edu>
Thu, 31 Oct 1996 18:57:20 +0000 (18:57 +0000)
supported.

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

src/lib/krb5/krb/ChangeLog
src/lib/krb5/krb/init_ctx.c

index 438876e42d156ddc5c3ad9dc4e751b752a89e4b4..27326db516a8e7889451a3f0ef44e9d95c11896c 100644 (file)
@@ -1,3 +1,8 @@
+Thu Oct 31 13:48:14 1996  Theodore Y. Ts'o  <tytso@mit.edu>
+
+       * init_ctx.c (krb5_init_context): Make it more obvious that
+               default ticket lifetimes is not yet supported.
+
 Tue Sep 24 20:59:14 1996  Theodore Y. Ts'o  <tytso@mit.edu>
 
        * get_in_tkt.c (make_preauth_list): Correctly null-terminate the
index ec2406776c1c5cc5c27f19279f9d6c321f6eb70c..3747a22370ab6b294c3772cf1f1ba1b1bb79e5a0 100644 (file)
@@ -69,10 +69,12 @@ krb5_init_context(context)
                            0, 5 * 60, &tmp);
        ctx->clockskew = tmp;
 
-       /* Default ticket lifetime is 
+#if 0
+       /* Default ticket lifetime is currently not supported */
        profile_get_integer(ctx->profile, "libdefaults", "tkt_lifetime",
                            0, 10 * 60 * 60, &tmp);
-       ctx->clockskew = tmp;
+       ctx->tkt_lifetime = tmp;
+#endif
 
        /* DCE 1.1 and below only support CKSUMTYPE_RSA_MD4 (2)  */
        /* DCE add kdc_req_checksum_type = 2 to krb5.conf */