From 3d22bd77a212fc75d49495476f5d08d76be2f313 Mon Sep 17 00:00:00 2001 From: Alexandra Ellwood Date: Tue, 5 Dec 2006 23:21:56 +0000 Subject: krb5_cc_remove should work for the CCAPI Implemented a working krb5_cc_remove for the CCAPI cache type. Added a private support function krb5_creds_compare() which checks if two krb5_creds are identical. This function should be needed by implementations of krb5_cc_remove for other ccache types. ticket: new owner: tlyu target_version: 1.6 tags: pullup git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18923 dc483132-0cff-0310-8789-dd5450dbe970 --- src/include/k5-int.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/include') diff --git a/src/include/k5-int.h b/src/include/k5-int.h index 73527c96a..0ceee4d7d 100644 --- a/src/include/k5-int.h +++ b/src/include/k5-int.h @@ -1732,6 +1732,11 @@ krb5_error_code KRB5_CALLCONV krb5_cc_retrieve_cred_default (krb5_context, krb5_ccache, krb5_flags, krb5_creds *, krb5_creds *); +krb5_boolean +krb5_creds_compare (krb5_context in_context, + krb5_creds *in_creds, + krb5_creds *in_compare_creds); + void krb5int_set_prompt_types (krb5_context, krb5_prompt_type *); -- cgit