Make all pkinit options prefixed with pkinit_

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19069 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-11-17 22:27:01 +00:00
parent 61623b636c
commit 5b7701514e
4 changed files with 29 additions and 29 deletions

View File

@@ -1828,19 +1828,19 @@ krb5_get_init_creds_opt_set_pkinit(krb5_context context,
if (pool == NULL)
pool = krb5_config_get_strings(context, NULL,
"appdefaults",
"pkinit-pool",
"pkinit_pool",
NULL);
if (pki_revoke == NULL)
pki_revoke = krb5_config_get_strings(context, NULL,
"appdefaults",
"pkinit-revoke",
"pkinit_revoke",
NULL);
if (x509_anchors == NULL) {
krb5_appdefault_string(context, "kinit",
krb5_principal_get_realm(context, principal),
"pkinit-anchors", NULL, &anchors);
"pkinit_anchors", NULL, &anchors);
x509_anchors = anchors;
}