From 5829ca2b348974e52a67b553afc7f7491007c33a Mon Sep 17 00:00:00 2001 From: Nicolas Williams Date: Wed, 18 Jul 2012 16:27:35 -0500 Subject: Policy extensions + new policy: allowed ks types This simply adds KADM5_API_VERSION_4 and various fields to the policy structures: - attributes (policy-ish principal attributes) - max_life (max ticket life) - max_renewable_life (max ticket renewable life) - allowed_keysalts (allowed key/salt types) - TL data (future policy extensions) Of these only allowed_keysalts is currently implemented. Some refactoring of TL data handling is also done. ticket: 7223 (new) --- src/clients/kinit/kinit_kdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/clients') diff --git a/src/clients/kinit/kinit_kdb.c b/src/clients/kinit/kinit_kdb.c index cc3df04..8e949f9 100644 --- a/src/clients/kinit/kinit_kdb.c +++ b/src/clients/kinit/kinit_kdb.c @@ -62,7 +62,7 @@ kinit_kdb_init(krb5_context *pcontext, char *realm) config.realm = realm; retval = kadm5_init(*pcontext, "kinit", NULL /*pass*/, "kinit", &config, - KADM5_STRUCT_VERSION, KADM5_API_VERSION_3, NULL, + KADM5_STRUCT_VERSION, KADM5_API_VERSION_4, NULL, &server_handle); if (retval) return retval; -- cgit v1.1