summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorJohn Kohl <jtkohl@mit.edu>1990-05-03 09:12:12 +0000
committerJohn Kohl <jtkohl@mit.edu>1990-05-03 09:12:12 +0000
commitbbe9cc15df300fc852628030a74faeacd9a542cb (patch)
treeba5365897362a5b22c19b96a2fc945344e115c38 /src/include
parentb78bda28d9e3aa68fffb7835ef3223fe07e071e8 (diff)
downloadkrb5-bbe9cc15df300fc852628030a74faeacd9a542cb.tar.gz
krb5-bbe9cc15df300fc852628030a74faeacd9a542cb.tar.xz
krb5-bbe9cc15df300fc852628030a74faeacd9a542cb.zip
ccache data needs to be a krb5_pointer (some compilers choke on void *)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@694 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-rw-r--r--src/include/krb5/ccache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/krb5/ccache.h b/src/include/krb5/ccache.h
index 4ff83d4e3..1409056bf 100644
--- a/src/include/krb5/ccache.h
+++ b/src/include/krb5/ccache.h
@@ -20,7 +20,7 @@ typedef krb5_pointer krb5_cc_cursor; /* cursor for sequential lookup */
typedef struct _krb5_ccache {
struct _krb5_cc_ops *ops;
- void *data;
+ krb5_pointer data;
} *krb5_ccache;
typedef struct _krb5_cc_ops {