summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/krb5/krb/ChangeLog5
-rw-r--r--src/lib/krb5/krb/init_ctx.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/src/lib/krb5/krb/ChangeLog b/src/lib/krb5/krb/ChangeLog
index 438876e42..27326db51 100644
--- a/src/lib/krb5/krb/ChangeLog
+++ b/src/lib/krb5/krb/ChangeLog
@@ -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
diff --git a/src/lib/krb5/krb/init_ctx.c b/src/lib/krb5/krb/init_ctx.c
index ec2406776..3747a2237 100644
--- a/src/lib/krb5/krb/init_ctx.c
+++ b/src/lib/krb5/krb/init_ctx.c
@@ -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 */