From 57941aa044b8e0ddac5cb1004172ba06bb4298a3 Mon Sep 17 00:00:00 2001 From: Richard Sharpe Date: Wed, 6 May 2015 17:00:06 -0700 Subject: s3: utils: Convert all uses of uint32/16/8 to _t. Signed-off-by: Richard Sharpe Reviewed-by: Jeremy Allison Autobuild-User(master): Jeremy Allison Autobuild-Date(master): Thu May 7 04:53:39 CEST 2015 on sn-devel-104 --- source3/utils/net.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source3/utils/net.c') diff --git a/source3/utils/net.c b/source3/utils/net.c index f53e627a20b..ceaf5da939a 100644 --- a/source3/utils/net.c +++ b/source3/utils/net.c @@ -370,10 +370,10 @@ static int net_getdomainsid(struct net_context *c, int argc, const char **argv) } static bool search_maxrid(struct pdb_search *search, const char *type, - uint32 *max_rid) + uint32_t *max_rid) { struct samr_displayentry *entries; - uint32 i, num_entries; + uint32_t i, num_entries; if (search == NULL) { d_fprintf(stderr, _("get_maxrid: Could not search %s\n"), type); @@ -387,9 +387,9 @@ static bool search_maxrid(struct pdb_search *search, const char *type, return true; } -static uint32 get_maxrid(void) +static uint32_t get_maxrid(void) { - uint32 max_rid = 0; + uint32_t max_rid = 0; if (!search_maxrid(pdb_search_users(talloc_tos(), 0), "users", &max_rid)) return 0; @@ -407,7 +407,7 @@ static uint32 get_maxrid(void) static int net_maxrid(struct net_context *c, int argc, const char **argv) { - uint32 rid; + uint32_t rid; if (argc != 0) { d_fprintf(stderr, "%s net maxrid\n", _("Usage:")); -- cgit v1.2.1