implement dummy kcm_move

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22098 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2007-12-03 13:19:51 +00:00
parent b7ccda14c6
commit aee37005ae

View File

@@ -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