summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorBarry Jaspan <bjaspan@mit.edu>1990-01-20 17:10:54 +0000
committerBarry Jaspan <bjaspan@mit.edu>1990-01-20 17:10:54 +0000
commit8758291bf9afc4fc9ecfba9b15004063cdab3971 (patch)
treee78dc703a2eb5c24246020194056bfd051cd45bd /src/include
parent8b444b766f51f110544611bb7c369ca957d2df7e (diff)
downloadkrb5-8758291bf9afc4fc9ecfba9b15004063cdab3971.tar.gz
krb5-8758291bf9afc4fc9ecfba9b15004063cdab3971.tar.xz
krb5-8758291bf9afc4fc9ecfba9b15004063cdab3971.zip
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
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 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;