summaryrefslogtreecommitdiffstats
path: root/src/lib/krb5/ccache/ccapi
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1999-03-23 22:12:56 +0000
committerTheodore Tso <tytso@mit.edu>1999-03-23 22:12:56 +0000
commit83d2542e66f758151a08510f2c572c6bc60fd2c2 (patch)
treeb4622304f11973691aa23987a5fb2539331a18c0 /src/lib/krb5/ccache/ccapi
parent1a9e233627a3df893e0ae014ae80125840934dd0 (diff)
downloadkrb5-83d2542e66f758151a08510f2c572c6bc60fd2c2.tar.gz
krb5-83d2542e66f758151a08510f2c572c6bc60fd2c2.tar.xz
krb5-83d2542e66f758151a08510f2c572c6bc60fd2c2.zip
Don't use cc_uint4 since the Windows include file apparently doesn't
include it. unsigned int will work just fine here for now. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11302 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5/ccache/ccapi')
-rw-r--r--src/lib/krb5/ccache/ccapi/stdcc_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/krb5/ccache/ccapi/stdcc_util.c b/src/lib/krb5/ccache/ccapi/stdcc_util.c
index 549ad6a54..7acb60380 100644
--- a/src/lib/krb5/ccache/ccapi/stdcc_util.c
+++ b/src/lib/krb5/ccache/ccapi/stdcc_util.c
@@ -454,7 +454,7 @@ static void deep_free_cc_data (cc_data data) {
static void deep_free_cc_data_array (cc_data** data) {
- cc_uint32 index;
+ unsigned int index;
if (data == NULL)
return;
@@ -507,4 +507,4 @@ cc_int32 krb5_free_cc_cred_union (cred_union** creds) {
}
return CC_NOERROR;
-} \ No newline at end of file
+}