move krb5_cc_copy_creds here

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@25010 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2009-04-03 03:57:37 +00:00
parent f2cb188d59
commit ba32ee19dc

View File

@@ -374,4 +374,18 @@ krb5_c_prf(krb5_context context,
return ret; return ret;
} }
/**
* MIT compat glue
*
* @ingroup krb5_ccache
*/
krb5_error_code KRB5_LIB_FUNCTION
krb5_cc_copy_creds(krb5_context context,
const krb5_ccache from,
krb5_ccache to)
{
return krb5_cc_copy_cache(context, from, to);
}
#endif /* HEIMDAL_SMALLER */ #endif /* HEIMDAL_SMALLER */