From: Barry Jaspan Date: Sun, 21 Jan 1990 16:08:52 +0000 (+0000) Subject: bjaspan: changed resolve and gennew to take pointers to krb5_ccaches X-Git-Tag: krb5-1.0-alpha2~1224 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1f3d18f868b1ef1e0c2953506abd4f726082f207;p=krb5.git 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 --- 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));