krb5: Fix kcm

This commit is contained in:
Nicolas Williams
2020-05-28 00:08:17 -05:00
parent fc7b7af95a
commit 1995637b15

View File

@@ -45,7 +45,7 @@ RCSID("$Id$");
#define CACHENAME(X) (KCMCACHE(X)->name)
static krb5_error_code
kcmss_get_name(krb5_context context,
kcmss_get_name_2(krb5_context context,
krb5_ccache id,
const char **name,
const char **col,
@@ -61,7 +61,7 @@ kcmss_get_name(krb5_context context,
}
static krb5_error_code
kcmss_resolve(krb5_context context,
kcmss_resolve_2(krb5_context context,
krb5_ccache *id,
const char *res,
const char *sub)
@@ -259,10 +259,10 @@ kcmss_get_version(krb5_context context,
}
static const krb5_cc_ops krb5_kcmss_ops = {
KRB5_CC_OPS_VERSION,
KRB5_CC_OPS_VERSION_5,
"KCM",
kcmss_get_name,
kcmss_resolve,
NULL,
NULL,
kcmss_gen_new,
kcmss_initialize,
kcmss_destroy,
@@ -285,6 +285,8 @@ static const krb5_cc_ops krb5_kcmss_ops = {
NULL,
NULL,
NULL,
kcmss_get_name_2,
kcmss_resolve_2,
};
krb5_error_code