From bf0d5d04ab3900361d0b4762de8d51571a4c5176 Mon Sep 17 00:00:00 2001 From: Brad Hards Date: Fri, 24 Dec 2010 18:02:06 +1100 Subject: Typo fix in KDC parameters. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Matthias Dieter Wallnöfer Autobuild-User: Matthias Dieter Wallnöfer Autobuild-Date: Fri Dec 24 12:09:00 CET 2010 on sn-devel-104 --- source4/kdc/policy.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/kdc/policy.c') diff --git a/source4/kdc/policy.c b/source4/kdc/policy.c index 7502148b5f..8f62c48649 100644 --- a/source4/kdc/policy.c +++ b/source4/kdc/policy.c @@ -34,11 +34,11 @@ void kdc_get_policy(struct loadparm_context *lp_ctx, k->authentication_options = LSA_POLICY_KERBEROS_VALIDATE_CLIENT; unix_to_nt_time(&k->service_tkt_lifetime, - lpcfg_parm_int(lp_ctx, NULL, "kdc", "service ticket lifefime", 10) * 60 * 60); + lpcfg_parm_int(lp_ctx, NULL, "kdc", "service ticket lifetime", 10) * 60 * 60); unix_to_nt_time(&k->user_tkt_lifetime, - lpcfg_parm_int(lp_ctx, NULL, "kdc", "user ticket lifefime", 10) * 60 * 60); + lpcfg_parm_int(lp_ctx, NULL, "kdc", "user ticket lifetime", 10) * 60 * 60); unix_to_nt_time(&k->user_tkt_renewaltime, - lpcfg_parm_int(lp_ctx, NULL, "kdc", "renewal lifefime", 24*7) * 60 * 60); + lpcfg_parm_int(lp_ctx, NULL, "kdc", "renewal lifetime", 24*7) * 60 * 60); if (smb_krb5_context) { unix_to_nt_time(&k->clock_skew, krb5_get_max_time_skew(smb_krb5_context->krb5_context)); -- cgit