summaryrefslogtreecommitdiffstats
path: root/source/librpc/rpc/dcerpc_smb.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-05-25 16:24:13 +0000
committerStefan Metzmacher <metze@samba.org>2004-05-25 16:24:13 +0000
commit6a0e10cfe30bec9bc3b5768f5fe804304462bd2e (patch)
treedb715b03f8136a5cb2e21164aad1016cf2466212 /source/librpc/rpc/dcerpc_smb.c
parent6b468696500391af9153dc1ddbedfb5d39d6fac8 (diff)
downloadsamba-6a0e10cfe30bec9bc3b5768f5fe804304462bd2e.tar.gz
samba-6a0e10cfe30bec9bc3b5768f5fe804304462bd2e.tar.xz
samba-6a0e10cfe30bec9bc3b5768f5fe804304462bd2e.zip
r884: convert samba4 to use [u]int32_t instead of [u]int32
metze
Diffstat (limited to 'source/librpc/rpc/dcerpc_smb.c')
-rw-r--r--source/librpc/rpc/dcerpc_smb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/librpc/rpc/dcerpc_smb.c b/source/librpc/rpc/dcerpc_smb.c
index 3d646944ac5..070f5548003 100644
--- a/source/librpc/rpc/dcerpc_smb.c
+++ b/source/librpc/rpc/dcerpc_smb.c
@@ -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);