summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2009-12-30 19:39:35 +0000
committerGreg Hudson <ghudson@mit.edu>2009-12-30 19:39:35 +0000
commitf164653ce35ed781acf29e59ab988fee89853166 (patch)
tree007d40d302901390e51aefb935d3694590c94289 /src
parente0e42ad8bb76955dd09d1f2076acaeb9ae38bb32 (diff)
downloadkrb5-f164653ce35ed781acf29e59ab988fee89853166.tar.gz
krb5-f164653ce35ed781acf29e59ab988fee89853166.tar.xz
krb5-f164653ce35ed781acf29e59ab988fee89853166.zip
Eliminate the krb5_set_default_in_tkt_ktypes and
krb5_set_default_tgs_ktypes during context initialization, as they weren't doing anything. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23545 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/lib/krb5/krb/init_ctx.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lib/krb5/krb/init_ctx.c b/src/lib/krb5/krb/init_ctx.c
index 4220c9be50..65a8401729 100644
--- a/src/lib/krb5/krb/init_ctx.c
+++ b/src/lib/krb5/krb/init_ctx.c
@@ -160,13 +160,6 @@ init_common (krb5_context *context, krb5_boolean secure, krb5_boolean kdc)
ctx->profile_secure = secure;
- /* Set the default encryption types, possible defined in krb5/conf */
- if ((retval = krb5_set_default_in_tkt_ktypes(ctx, NULL)))
- goto cleanup;
-
- if ((retval = krb5_set_default_tgs_ktypes(ctx, NULL)))
- goto cleanup;
-
if ((retval = krb5_os_init_context(ctx, kdc)))
goto cleanup;