From: Greg Hudson Date: Thu, 7 Jan 2010 20:57:02 +0000 (+0000) Subject: When retrieving the kadmin/history key, accept any enctype, as the X-Git-Tag: krb5-1.9-beta1~394 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9f4eacfe818bff7e0d8c2c14f713aa28f06420e4;p=krb5.git When retrieving the kadmin/history key, accept any enctype, as the current master key enctype may not match the one the KDB was created with. ticket: 6546 status: open git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23607 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/kadm5/srv/server_kdb.c b/src/lib/kadm5/srv/server_kdb.c index 4b1d05dbb..1e98a8e03 100644 --- a/src/lib/kadm5/srv/server_kdb.c +++ b/src/lib/kadm5/srv/server_kdb.c @@ -205,8 +205,8 @@ krb5_error_code kdb_init_hist(kadm5_server_handle_t handle, char *r) } - ret = krb5_dbe_find_enctype(handle->context, &hist_db, - handle->params.enctype, -1, -1, &key_data); + ret = krb5_dbe_find_enctype(handle->context, &hist_db, -1, -1, -1, + &key_data); if (ret) goto done;