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:
@@ -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
|
||||
|
Reference in New Issue
Block a user