summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorDan Winship <danw@mit.edu>1998-01-30 01:17:17 +0000
committerDan Winship <danw@mit.edu>1998-01-30 01:17:17 +0000
commit29763f5e2e510bc7bfe728c6edf6987c2f4cc90b (patch)
tree268481d29bb238a33755de115aa5cde7edb365eb /src/include
parent5f04a55959beba585481c44fb2c35cfeee6afc66 (diff)
downloadkrb5-29763f5e2e510bc7bfe728c6edf6987c2f4cc90b.tar.gz
krb5-29763f5e2e510bc7bfe728c6edf6987c2f4cc90b.tar.xz
krb5-29763f5e2e510bc7bfe728c6edf6987c2f4cc90b.zip
* 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
Diffstat (limited to 'src/include')
-rw-r--r--src/include/ChangeLog5
-rw-r--r--src/include/krb5.hin2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/include/ChangeLog b/src/include/ChangeLog
index 6ba9ccfa31..6bfd0b0e3c 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 0e58be1bea..12438e5835 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))