From f9d8f8843dc0ab8c9d59abde7222e0f118b86b5d Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 25 May 2004 16:24:13 +0000 Subject: r884: convert samba4 to use [u]int32_t instead of [u]int32 metze (This used to be commit 0e5517d937a2eb7cf707991d1c7498c1ab456095) --- source4/client/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/client') diff --git a/source4/client/client.c b/source4/client/client.c index 77d4b4b497..6599e143dd 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -2208,7 +2208,7 @@ static int cmd_reput(void) /* return a string representing a share type */ -static const char *share_type_str(uint32 type) +static const char *share_type_str(uint32_t type) { switch (type & 0xF) { case STYPE_DISKTREE: @@ -2253,7 +2253,7 @@ static BOOL browse_host(const char *query_host) char *binding; NTSTATUS status; struct srvsvc_NetShareEnumAll r; - uint32 resume_handle = 0; + uint32_t resume_handle = 0; TALLOC_CTX *mem_ctx = talloc_init("browse_host"); struct srvsvc_NetShareCtr1 ctr1; -- cgit