summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorAlexandra Ellwood <lxs@mit.edu>2006-12-05 23:21:56 +0000
committerAlexandra Ellwood <lxs@mit.edu>2006-12-05 23:21:56 +0000
commit3d22bd77a212fc75d49495476f5d08d76be2f313 (patch)
treee02fb8062f31af0c31ad2be42794a294fdecbd0b /src/include
parent1526e420455d51bc0eceb24452f398858b585bc7 (diff)
downloadkrb5-3d22bd77a212fc75d49495476f5d08d76be2f313.tar.gz
krb5-3d22bd77a212fc75d49495476f5d08d76be2f313.tar.xz
krb5-3d22bd77a212fc75d49495476f5d08d76be2f313.zip
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
Diffstat (limited to 'src/include')
-rw-r--r--src/include/k5-int.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/k5-int.h b/src/include/k5-int.h
index 73527c96ab..0ceee4d7d3 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 *);