From 97119eb8729bf928eae09d53532425a0cea51c0f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Mon, 7 Apr 2008 11:48:06 +0000 Subject: [PATCH] Extend krb5_cc_ops and add set_default to set the default cc name for a credential type. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22836 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/krb5.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/krb5/krb5.h b/lib/krb5/krb5.h index 521afb4ed..b3e9ed663 100644 --- a/lib/krb5/krb5.h +++ b/lib/krb5/krb5.h @@ -420,7 +420,8 @@ typedef struct krb5_cc_ops { krb5_error_code (*get_cache_next)(krb5_context, krb5_cc_cursor, krb5_ccache *); krb5_error_code (*end_cache_get)(krb5_context, krb5_cc_cursor); krb5_error_code (*move)(krb5_context, krb5_ccache, krb5_ccache); - krb5_error_code (*default_name)(krb5_context, char **); + krb5_error_code (*get_default_name)(krb5_context, char **); + krb5_error_code (*set_default)(krb5_context, krb5_ccache); } krb5_cc_ops; struct krb5_log_facility; -- 2.11.4.GIT