diff --git a/lib/krb5/kcm.c b/lib/krb5/kcm.c index 0b95f3074..17a591e4c 100644 --- a/lib/krb5/kcm.c +++ b/lib/krb5/kcm.c @@ -829,6 +829,14 @@ kcm_get_version(krb5_context context, return 0; } +static krb5_error_code +kcm_move(krb5_context context, krb5_ccache from, krb5_ccache to) +{ + krb5_set_error_string(context, "kcm_move not implemented"); + return EINVAL; +} + + /** * Variable containing the KCM based credential cache implemention. * @@ -851,7 +859,11 @@ const krb5_cc_ops krb5_kcm_ops = { kcm_end_get, kcm_remove_cred, kcm_set_flags, - kcm_get_version + kcm_get_version, + NULL, + NULL, + NULL, + kcm_move }; krb5_boolean