diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/ChangeLog | 5 | ||||
| -rw-r--r-- | src/include/krb5.hin | 2 |
2 files changed, 6 insertions, 1 deletions
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 <danw@mit.edu> + + * 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 <tlyu@mit.edu> * 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)) |
