From 19da8a46fc6d89e00ff4d0b45b797d1ac910c518 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Thu, 21 Jun 2001 20:44:28 +0000 Subject: [PATCH] (krb5_get_init_creds_opt_set_default_flags): make the appdefault keywords have the same names git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@10164 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/init_creds.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/krb5/init_creds.c b/lib/krb5/init_creds.c index b84d43026..072ee8b86 100644 --- a/lib/krb5/init_creds.c +++ b/lib/krb5/init_creds.c @@ -110,13 +110,13 @@ krb5_get_init_creds_opt_set_default_flags(krb5_context context, krb5_appdefault_boolean(context, appname, realm, "proxiable", b, &b); krb5_get_init_creds_opt_set_proxiable (opt, b); - krb5_appdefault_time(context, appname, realm, "ticket_life", 0, &t); + krb5_appdefault_time(context, appname, realm, "ticket_lifetime", 0, &t); if (t == 0) t = get_config_time (context, realm, "ticket_lifetime", 0); if(t != 0) krb5_get_init_creds_opt_set_tkt_life(opt, t); - krb5_appdefault_time(context, appname, realm, "renewable_life", 0, &t); + krb5_appdefault_time(context, appname, realm, "renew_lifetime", 0, &t); if (t == 0) t = get_config_time (context, realm, "renew_lifetime", 0); if(t != 0)