From: Theodore Tso Date: Thu, 31 Oct 1996 18:57:20 +0000 (+0000) Subject: Make it more obvious that default ticket lifetimes is not yet X-Git-Tag: krb5-1.0-freeze1~155 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=262aba61c0065a3a96b80ea2e3a41a657e74d4f7;p=krb5.git Make it more obvious that default ticket lifetimes is not yet supported. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9267 dc483132-0cff-0310-8789-dd5450dbe970 --- 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 + + * 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 * 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 */