summaryrefslogtreecommitdiff
path: root/source4/utils/net_rpc_join.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-06-01 08:30:34 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:23 -0500
commit98d291423ff581786a369ce373c861f94c654aa0 (patch)
treecfcc2391f71a4f3373c5fff359a285aeee558639 /source4/utils/net_rpc_join.c
parentfa2e9ec311b99dee2fbff5ee5fa2c743298dacad (diff)
downloadsamba-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_join.c')
-rw-r--r--source4/utils/net_rpc_join.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/utils/net_rpc_join.c b/source4/utils/net_rpc_join.c
index d790584269..43bd56d251 100644
--- a/source4/utils/net_rpc_join.c
+++ b/source4/utils/net_rpc_join.c
@@ -45,7 +45,7 @@
int net_rpc_join_ok(const char *domain)
{
struct cli_state *cli;
- uchar stored_md4_trust_password[16];
+ uint8_t stored_md4_trust_password[16];
int retval = 1;
uint32_t channel;
NTSTATUS result;
@@ -121,7 +121,7 @@ int net_rpc_join_newstyle(int argc, const char **argv)
char *clear_trust_password = NULL;
fstring ucs2_trust_password;
int ucs2_pw_len;
- uchar pwbuf[516], sess_key[16];
+ uint8_t pwbuf[516], sess_key[16];
SAM_USERINFO_CTR ctr;
SAM_USER_INFO_24 p24;
SAM_USER_INFO_10 p10;