projects
/
krb5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a9e233
)
Don't use cc_uint4 since the Windows include file apparently doesn't
author
Theodore Tso
<tytso@mit.edu>
Tue, 23 Mar 1999 22:12:56 +0000
(22:12 +0000)
committer
Theodore 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
patch
|
blob
|
history
diff --git
a/src/lib/krb5/ccache/ccapi/stdcc_util.c
b/src/lib/krb5/ccache/ccapi/stdcc_util.c
index 549ad6a5422ac434e8579bbaaa30b0a86dcb795d..7acb60380cd24a5b52e89a53cd748ff330132f64 100644
(file)
--- 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
+}