ccache data needs to be a krb5_pointer (some compilers choke on void *)
authorJohn Kohl <jtkohl@mit.edu>
Thu, 3 May 1990 09:12:12 +0000 (09:12 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Thu, 3 May 1990 09:12:12 +0000 (09:12 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@694 dc483132-0cff-0310-8789-dd5450dbe970

src/include/krb5/ccache.h

index 4ff83d4e34198635932c7620b6f866929748775f..1409056bf2f710edd8beadd41067f9cd7be57c64 100644 (file)
@@ -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 {