diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-01-31 16:06:21 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:26 -0500 |
commit | d8d3a5ffe3fb73d64869c133fe398efeb4e79d77 (patch) | |
tree | d5f31ebd3c6d29b316de98289ef9789c5cf2b405 /source4/auth | |
parent | f0d97d27aefa746f7c925296a2e4fa4d57b3219d (diff) | |
download | samba-d8d3a5ffe3fb73d64869c133fe398efeb4e79d77.tar.gz samba-d8d3a5ffe3fb73d64869c133fe398efeb4e79d77.tar.bz2 samba-d8d3a5ffe3fb73d64869c133fe398efeb4e79d77.zip |
r5137: fix types
metze
(This used to be commit add1c579375d08040f722946da31ee3862f9e7ac)
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/auth.h | 6 | ||||
-rw-r--r-- | source4/auth/auth_util.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source4/auth/auth.h b/source4/auth/auth.h index e78b21339f..425410e088 100644 --- a/source4/auth/auth.h +++ b/source4/auth/auth.h @@ -85,10 +85,10 @@ struct auth_serversupplied_info NTTIME allow_password_change; NTTIME force_password_change; - uint16 logon_count; - uint16 bad_password_count; + uint16_t logon_count; + uint16_t bad_password_count; - uint32 acct_flags; + uint32_t acct_flags; BOOL authenticated; }; diff --git a/source4/auth/auth_util.c b/source4/auth/auth_util.c index 34aa632c3a..d80e5fdb78 100644 --- a/source4/auth/auth_util.c +++ b/source4/auth/auth_util.c @@ -273,7 +273,7 @@ NTSTATUS make_user_info_anonymous(TALLOC_CTX *mem_ctx, struct auth_usersupplied_ ***************************************************************************/ NTSTATUS make_server_info_netlogon_validation(TALLOC_CTX *mem_ctx, const char *account_name, - uint16 validation_level, + uint16_t validation_level, union netr_Validation *validation, struct auth_serversupplied_info **_server_info) { |