From: John Kohl Date: Thu, 3 May 1990 09:12:12 +0000 (+0000) Subject: ccache data needs to be a krb5_pointer (some compilers choke on void *) X-Git-Tag: krb5-1.0-alpha2~702 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=bbe9cc15df300fc852628030a74faeacd9a542cb;p=krb5.git 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 --- 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 {