Don't use cc_uint4 since the Windows include file apparently doesn't
authorTheodore Tso <tytso@mit.edu>
Tue, 23 Mar 1999 22:12:56 +0000 (22:12 +0000)
committerTheodore Tso <tytso@mit.edu>
Tue, 23 Mar 1999 22:12:56 +0000 (22:12 +0000)
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

src/lib/krb5/ccache/ccapi/stdcc_util.c

index 549ad6a5422ac434e8579bbaaa30b0a86dcb795d..7acb60380cd24a5b52e89a53cd748ff330132f64 100644 (file)
@@ -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
+}