move krb5_cc_gen_new to deprecated, but don't mark it yet.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@25028 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2009-04-03 04:01:27 +00:00
parent 47de5125a8
commit 90737f4260

View File

@@ -372,4 +372,22 @@ krb5_425_conv_principal(krb5_context context,
NULL, resolve, princ);
}
/**
* Generate a new ccache of type `ops' in `id'.
*
* @return Return an error code or 0, see krb5_get_error_message().
*
* @ingroup krb5_ccache
*/
krb5_error_code KRB5_LIB_FUNCTION
krb5_cc_gen_new(krb5_context context,
const krb5_cc_ops *ops,
krb5_ccache *id)
{
return krb5_cc_new_unique(context, ops->prefix, NULL, id);
}
#endif /* HEIMDAL_SMALLER */