make get_default_name have a better name

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@23959 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2008-10-26 18:21:11 +00:00
parent 66d934b8a4
commit 9aa9efb279

View File

@@ -921,7 +921,7 @@ fcc_move(krb5_context context, krb5_ccache from, krb5_ccache to)
} }
static krb5_error_code static krb5_error_code
fcc_default_name(krb5_context context, char **str) fcc_get_default_name(krb5_context context, char **str)
{ {
return _krb5_expand_default_cc_name(context, return _krb5_expand_default_cc_name(context,
KRB5_DEFAULT_CCNAME_FILE, KRB5_DEFAULT_CCNAME_FILE,
@@ -977,6 +977,7 @@ KRB5_LIB_VARIABLE const krb5_cc_ops krb5_fcc_ops = {
fcc_get_cache_next, fcc_get_cache_next,
fcc_end_cache_get, fcc_end_cache_get,
fcc_move, fcc_move,
fcc_default_name, fcc_get_default_name,
NULL,
fcc_lastchange fcc_lastchange
}; };