diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-06-01 08:30:34 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:56:23 -0500 |
commit | 98d291423ff581786a369ce373c861f94c654aa0 (patch) | |
tree | cfcc2391f71a4f3373c5fff359a285aeee558639 /source4/utils/net_rpc_samsync.c | |
parent | fa2e9ec311b99dee2fbff5ee5fa2c743298dacad (diff) | |
download | samba-98d291423ff581786a369ce373c861f94c654aa0.tar.gz samba-98d291423ff581786a369ce373c861f94c654aa0.tar.bz2 samba-98d291423ff581786a369ce373c861f94c654aa0.zip |
r961: convert 'uchar' to 'uint8_t'
metze
(This used to be commit 9f914e4af99e18b469d4cf9d8b1514a2bd28ddec)
Diffstat (limited to 'source4/utils/net_rpc_samsync.c')
-rw-r--r-- | source4/utils/net_rpc_samsync.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source4/utils/net_rpc_samsync.c b/source4/utils/net_rpc_samsync.c index 1a733b3ab7..7e6f515c29 100644 --- a/source4/utils/net_rpc_samsync.c +++ b/source4/utils/net_rpc_samsync.c @@ -55,8 +55,8 @@ static void display_alias_mem(uint32_t rid, SAM_ALIAS_MEM_INFO *a) static void display_account_info(uint32_t rid, SAM_ACCOUNT_INFO *a) { fstring hex_nt_passwd, hex_lm_passwd; - uchar lm_passwd[16], nt_passwd[16]; - static uchar zero_buf[16]; + uint8_t lm_passwd[16], nt_passwd[16]; + static uint8_t zero_buf[16]; /* Decode hashes from password hash (if they are not NULL) */ @@ -153,7 +153,7 @@ int rpc_samdump(int argc, const char **argv) { NTSTATUS result; struct cli_state *cli = NULL; - uchar trust_password[16]; + uint8_t trust_password[16]; DOM_CRED ret_creds; uint32_t neg_flags = 0x000001ff; @@ -202,8 +202,8 @@ static NTSTATUS sam_account_from_delta(SAM_ACCOUNT *account, SAM_ACCOUNT_INFO *delta) { fstring s; - uchar lm_passwd[16], nt_passwd[16]; - static uchar zero_buf[16]; + uint8_t lm_passwd[16], nt_passwd[16]; + static uint8_t zero_buf[16]; /* Username, fullname, home dir, dir drive, logon script, acct desc, workstations, profile. */ @@ -673,7 +673,7 @@ int rpc_vampire(int argc, const char **argv) { NTSTATUS result; struct cli_state *cli = NULL; - uchar trust_password[16]; + uint8_t trust_password[16]; DOM_CRED ret_creds; uint32_t neg_flags = 0x000001ff; DOM_SID dom_sid; |