From 93ff9f0443e06f0ffbd7f05ded82492c7acddb58 Mon Sep 17 00:00:00 2001 From: Luke Howard Date: Wed, 2 Feb 2005 07:32:47 +0000 Subject: [PATCH] fix cc_retrieve prototype, add KCM cc_ops git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@14534 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 008852975..b766c3179 100644 --- a/lib/krb5/krb5.h +++ b/lib/krb5/krb5.h @@ -377,7 +377,7 @@ typedef struct krb5_cc_ops { krb5_error_code (*close)(krb5_context, krb5_ccache); krb5_error_code (*store)(krb5_context, krb5_ccache, krb5_creds*); krb5_error_code (*retrieve)(krb5_context, krb5_ccache, - krb5_flags, krb5_creds*, krb5_creds); + krb5_flags, const krb5_creds*, krb5_creds *); krb5_error_code (*get_princ)(krb5_context, krb5_ccache, krb5_principal*); krb5_error_code (*get_first)(krb5_context, krb5_ccache, krb5_cc_cursor *); krb5_error_code (*get_next)(krb5_context, krb5_ccache, @@ -689,6 +689,7 @@ typedef struct krb5_verify_opt { extern const krb5_cc_ops krb5_acc_ops; extern const krb5_cc_ops krb5_fcc_ops; extern const krb5_cc_ops krb5_mcc_ops; +extern const krb5_cc_ops krb5_kcm_ops; extern const krb5_kt_ops krb5_fkt_ops; extern const krb5_kt_ops krb5_wrfkt_ops;