From 1f3d18f868b1ef1e0c2953506abd4f726082f207 Mon Sep 17 00:00:00 2001 From: Barry Jaspan Date: Sun, 21 Jan 1990 16:08:52 +0000 Subject: [PATCH] bjaspan: changed resolve and gennew to take pointers to krb5_ccaches git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@159 dc483132-0cff-0310-8789-dd5450dbe970 --- src/include/krb5/ccache.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/krb5/ccache.h b/src/include/krb5/ccache.h index cecfa0fc2..1b0fc7ba0 100644 --- a/src/include/krb5/ccache.h +++ b/src/include/krb5/ccache.h @@ -26,8 +26,8 @@ typedef struct _krb5_ccache { typedef struct _krb5_cc_ops { char *prefix; char *(*get_name) PROTOTYPE((krb5_ccache)); - krb5_error_code (*resolve) PROTOTYPE((krb5_ccache, char *)); - krb5_error_code (*gen_new) PROTOTYPE((krb5_ccache)); + krb5_error_code (*resolve) PROTOTYPE((krb5_ccache *, char *)); + krb5_error_code (*gen_new) PROTOTYPE((krb5_ccache *)); krb5_error_code (*init) PROTOTYPE((krb5_ccache, krb5_principal)); krb5_error_code (*destroy) PROTOTYPE((krb5_ccache)); krb5_error_code (*close) PROTOTYPE((krb5_ccache)); -- 2.26.2