From: Barry Jaspan Date: Sat, 20 Jan 1990 17:10:54 +0000 (+0000) Subject: typedef of krb5_ccache X-Git-Tag: krb5-1.0-alpha2~1226 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8758291bf9afc4fc9ecfba9b15004063cdab3971;p=krb5.git typedef of krb5_ccache bjaspan: changed "struct krb5_cc_ops" to "struct _krb5_cc_ops" in git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@157 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/include/krb5/ccache.h b/src/include/krb5/ccache.h index 70125fe38..cecfa0fc2 100644 --- a/src/include/krb5/ccache.h +++ b/src/include/krb5/ccache.h @@ -19,7 +19,7 @@ typedef krb5_pointer krb5_cc_cursor; /* cursor for sequential lookup */ typedef struct _krb5_ccache { - struct krb5_cc_ops *ops; + struct _krb5_cc_ops *ops; void *data; } *krb5_ccache;