r884: convert samba4 to use [u]int32_t instead of [u]int32
[samba.git] / source4 / librpc / rpc / dcerpc_smb.c
index 3d646944ac5a2c99435ad1295c0f0e6f53c604bf..070f5548003cd159bb6fcab08b81f17ca54e4044 100644 (file)
@@ -105,7 +105,7 @@ static NTSTATUS dcerpc_raw_recv(struct dcerpc_pipe *p,
 
        /* the rest of the data is available via SMBreadX */
        while (frag_length > payload.length) {
-               uint32 n;
+               uint32_t n;
                union smb_read io;
 
                n = frag_length - payload.length;
@@ -169,8 +169,8 @@ static NTSTATUS smb_secondary_request(struct dcerpc_pipe *p,
 {
        struct smb_private *smb = p->transport.private;
        union smb_read io;
-       uint32 n = 0x2000;
-       uint32 frag_length;
+       uint32_t n = 0x2000;
+       uint32_t frag_length;
        NTSTATUS status;
 
        *blob = data_blob_talloc(mem_ctx, NULL, n);