From: Jeffrey Altman Date: Tue, 4 Apr 2000 03:58:22 +0000 (+0000) Subject: 2000-04-03 Jeffrey Altman X-Git-Tag: krb5-1.3-alpha1~2156 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e3b2b935dbca2c0e1e5e7f4bb41778a1744ccd0f;p=krb5.git 2000-04-03 Jeffrey Altman * stdcc_util.c (copyCCDataArrayToK5, copyCCDataArrayToK5): * stdcc_util.c (dupCCtoK5, dupK5toCC): Changed all references to the type UInt32 to unsigned int since UInt32 is not a standard type on Unix or Win32 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12149 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb5/ccache/ccapi/ChangeLog b/src/lib/krb5/ccache/ccapi/ChangeLog index fe0baae30..b5d1a7d72 100644 --- a/src/lib/krb5/ccache/ccapi/ChangeLog +++ b/src/lib/krb5/ccache/ccapi/ChangeLog @@ -1,3 +1,11 @@ +2000-04-03 Jeffrey Altman + + * stdcc_util.c (copyCCDataArrayToK5, copyCCDataArrayToK5): + * stdcc_util.c (dupCCtoK5, dupK5toCC): + + Changed all references to the type UInt32 to unsigned int + since UInt32 is not a standard type on Unix or Win32 + 2000-03-24 Alexandra Ellwood * stdcc_util.c (copyCCDataArrayToK5, copyCCDataArrayToK5): diff --git a/src/lib/krb5/ccache/ccapi/stdcc_util.c b/src/lib/krb5/ccache/ccapi/stdcc_util.c index 416f3a8b3..dba42540d 100644 --- a/src/lib/krb5/ccache/ccapi/stdcc_util.c +++ b/src/lib/krb5/ccache/ccapi/stdcc_util.c @@ -32,7 +32,7 @@ int copyCCDataArrayToK5(cc_creds *ccCreds, krb5_creds *v5Creds, char whichArray) krb5_address **addrPtr, *addr; cc_data **dataPtr, *data; - UInt32 numRecords = 0; + unsigned int numRecords = 0; /* Allocate the array of pointers: */ for (dataPtr = ccCreds->addresses; *dataPtr != NULL; numRecords++, dataPtr++) {} @@ -70,7 +70,7 @@ int copyCCDataArrayToK5(cc_creds *ccCreds, krb5_creds *v5Creds, char whichArray) } else { krb5_authdata **authPtr, *auth; cc_data **dataPtr, *data; - UInt32 numRecords = 0; + unsigned int numRecords = 0; /* Allocate the array of pointers: */ for (dataPtr = ccCreds->authdata; *dataPtr != NULL; numRecords++, dataPtr++) {} @@ -118,7 +118,7 @@ int copyK5DataArrayToCC(krb5_creds *v5Creds, cc_creds *ccCreds, char whichArray) krb5_address **addrPtr, *addr; cc_data **dataPtr, *data; - UInt32 numRecords = 0; + unsigned int numRecords = 0; /* Allocate the array of pointers: */ for (addrPtr = v5Creds->addresses; *addrPtr != NULL; numRecords++, addrPtr++) {} @@ -155,7 +155,7 @@ int copyK5DataArrayToCC(krb5_creds *v5Creds, cc_creds *ccCreds, char whichArray) } else { krb5_authdata **authPtr, *auth; cc_data **dataPtr, *data; - UInt32 numRecords = 0; + unsigned int numRecords = 0; /* Allocate the array of pointers: */ for (authPtr = v5Creds->authdata; *authPtr != NULL; numRecords++, authPtr++) {}