summaryrefslogtreecommitdiff
path: root/source3/auth
diff options
context:
space:
mode:
authorRichard Sharpe <rsharpe@samba.org>2015-05-13 17:26:01 -0700
committerJeremy Allison <jra@samba.org>2015-05-14 22:16:56 +0200
commit57568f1900152c4cb381e151049414086bada14b (patch)
treedd8fce80c579dd5314863cf3e55dd5a60108f862 /source3/auth
parent059a6e00251acc29dbb4efce3bbea231ba5ba153 (diff)
downloadsamba-57568f1900152c4cb381e151049414086bada14b.tar.gz
Convert all uint32/16/8 to _t in a grab-bag of remaining files.
I still need to fix the rpc stuff, but we are almost there. Signed-off-by: Richard Sharpe <rsharpe@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Thu May 14 22:16:56 CEST 2015 on sn-devel-104
Diffstat (limited to 'source3/auth')
-rw-r--r--source3/auth/token_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/auth/token_util.c b/source3/auth/token_util.c
index 1f95be60a54..c7319adceae 100644
--- a/source3/auth/token_util.c
+++ b/source3/auth/token_util.c
@@ -47,7 +47,7 @@ bool nt_token_check_sid ( const struct dom_sid *sid, const struct security_token
return security_token_has_sid(token, sid);
}
-bool nt_token_check_domain_rid( struct security_token *token, uint32 rid )
+bool nt_token_check_domain_rid( struct security_token *token, uint32_t rid )
{
struct dom_sid domain_sid;
@@ -129,7 +129,7 @@ struct security_token *get_root_nt_token( void )
NTSTATUS add_aliases(const struct dom_sid *domain_sid,
struct security_token *token)
{
- uint32 *aliases;
+ uint32_t *aliases;
size_t i, num_aliases;
NTSTATUS status;
TALLOC_CTX *tmp_ctx;