* krb5.hin: fix #define of krb5_cc_gen_new (takes a krb5_ccache *,
authorDan Winship <danw@mit.edu>
Fri, 30 Jan 1998 01:17:17 +0000 (01:17 +0000)
committerDan Winship <danw@mit.edu>
Fri, 30 Jan 1998 01:17:17 +0000 (01:17 +0000)
        not a krb5_ccache)

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10388 dc483132-0cff-0310-8789-dd5450dbe970

src/include/ChangeLog
src/include/krb5.hin

index 6ba9ccfa31c5f1ec1aa045a58f09c55b3a17e387..6bfd0b0e3cec6809fb9081bc21250b69f46f0586 100644 (file)
@@ -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
index 0e58be1beabebc2222a64983fa61fcf9fff4af9e..12438e5835bb9f7f8c3ff883a97b317dca45398f 100644 (file)
@@ -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))