Typo fix in KDC parameters.
authorBrad Hards <bradh@frogmouth.net>
Fri, 24 Dec 2010 07:02:06 +0000 (18:02 +1100)
committerMatthias Dieter Wallnöfer <mdw@samba.org>
Fri, 24 Dec 2010 11:09:00 +0000 (12:09 +0100)
Signed-off-by: Matthias Dieter Wallnöfer <mdw@samba.org>
Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org>
Autobuild-Date: Fri Dec 24 12:09:00 CET 2010 on sn-devel-104

source4/kdc/policy.c

index 7502148b5f282b9d732bc0c81ed1628cd0595a68..8f62c486497b513489ecc3cbbd33370ee0b5d09f 100644 (file)
@@ -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));