From: Dan Winship Date: Fri, 30 Jan 1998 01:17:17 +0000 (+0000) Subject: * krb5.hin: fix #define of krb5_cc_gen_new (takes a krb5_ccache *, X-Git-Tag: krb5-1.1-beta1~870 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=29763f5e2e510bc7bfe728c6edf6987c2f4cc90b;p=krb5.git * krb5.hin: fix #define of krb5_cc_gen_new (takes a krb5_ccache *, not a krb5_ccache) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10388 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/include/ChangeLog b/src/include/ChangeLog index 6ba9ccfa3..6bfd0b0e3 100644 --- a/src/include/ChangeLog +++ b/src/include/ChangeLog @@ -1,3 +1,8 @@ +Thu Jan 29 20:15:30 1998 Dan Winship + + * krb5.hin: fix #define of krb5_cc_gen_new (takes a krb5_ccache *, + not a krb5_ccache) + Sat Dec 6 02:20:11 1997 Tom Yu * krb5.hin: Add constants and prototypes for the Cygnus password diff --git a/src/include/krb5.hin b/src/include/krb5.hin index 0e58be1be..12438e583 100644 --- a/src/include/krb5.hin +++ b/src/include/krb5.hin @@ -1032,7 +1032,7 @@ typedef struct _krb5_cc_ops { #define KRB5_TC_OPENCLOSE 0x00000001 #define krb5_cc_initialize(context, cache, principal) krb5_x((cache)->ops->init,(context, cache, principal)) -#define krb5_cc_gen_new(context, cache) krb5_x((cache)->ops->gen_new,(context, cache)) +#define krb5_cc_gen_new(context, cache) krb5_x((*cache)->ops->gen_new,(context, cache)) #define krb5_cc_destroy(context, cache) krb5_x((cache)->ops->destroy,(context, cache)) #define krb5_cc_close(context, cache) krb5_x((cache)->ops->close,(context, cache)) #define krb5_cc_store_cred(context, cache, creds) krb5_x((cache)->ops->store,(context, cache, creds))