2000-04-03 Jeffrey Altman <jaltman@columbia.edu>
authorJeffrey Altman <jaltman@secure-endpoints.com>
Tue, 4 Apr 2000 03:58:22 +0000 (03:58 +0000)
committerJeffrey Altman <jaltman@secure-endpoints.com>
Tue, 4 Apr 2000 03:58:22 +0000 (03:58 +0000)
* 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

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

index fe0baae30ed3d9b79b34b9f048ec3a569bd07aa5..b5d1a7d72a93f317fa7e5d5d1e265a3f00421928 100644 (file)
@@ -1,3 +1,11 @@
+2000-04-03  Jeffrey Altman <jaltman@columbia.edu>
+
+       * 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  <lxs@mit.edu>
 
        * stdcc_util.c (copyCCDataArrayToK5, copyCCDataArrayToK5): 
index 416f3a8b34a3f7a3c7114d4f4c7501223f87d229..dba42540d92048a9af025979ba6c75468fb196db 100644 (file)
@@ -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++) {}