summaryrefslogtreecommitdiffstats
path: root/source/rpcclient
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-11-05 01:41:16 +0000
committerTim Potter <tpot@samba.org>2001-11-05 01:41:16 +0000
commit7c3090fb2017eb08b8785f0b6e4eb98ab9246bbc (patch)
tree0c535b30b139a06245b451839da2f4e18c22b6b2 /source/rpcclient
parent4880f37e4ee08b6363314a3fb67051a6708988d0 (diff)
downloadsamba-7c3090fb2017eb08b8785f0b6e4eb98ab9246bbc.tar.gz
samba-7c3090fb2017eb08b8785f0b6e4eb98ab9246bbc.tar.xz
samba-7c3090fb2017eb08b8785f0b6e4eb98ab9246bbc.zip
Fixed some compiler warnings.
Diffstat (limited to 'source/rpcclient')
-rw-r--r--source/rpcclient/samsync.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/rpcclient/samsync.c b/source/rpcclient/samsync.c
index c659784f57e..7bdc49e7933 100644
--- a/source/rpcclient/samsync.c
+++ b/source/rpcclient/samsync.c
@@ -67,7 +67,7 @@ static NTSTATUS sam_sync(struct cli_state *cli, unsigned char trust_passwd[16],
int i;
for (i = 0; i < num_deltas; i++) {
- SAM_ACCOUNT_INFO *acct;
+ SAM_ACCOUNT_INFO *a;
fstring acct_name, hex_nt_passwd, hex_lm_passwd;
uchar lm_passwd[16], nt_passwd[16];
@@ -76,29 +76,29 @@ static NTSTATUS sam_sync(struct cli_state *cli, unsigned char trust_passwd[16],
if (hdr_deltas[i].type != SAM_DELTA_ACCOUNT_INFO)
continue;
- acct = &deltas[i].account_info;
+ a = &deltas[i].account_info;
- unistr2_to_ascii(acct_name, &acct->uni_acct_name,
+ unistr2_to_ascii(acct_name, &a->uni_acct_name,
sizeof(acct_name) - 1);
/* Decode hashes from password hash */
- sam_pwd_hash(acct->user_rid, acct->pass.buf_lm_pwd,
+ sam_pwd_hash(a->user_rid, a->pass.buf_lm_pwd,
lm_passwd, 0);
- sam_pwd_hash(acct->user_rid, acct->pass.buf_nt_pwd,
+ sam_pwd_hash(a->user_rid, a->pass.buf_nt_pwd,
nt_passwd, 0);
/* Encode as strings */
smbpasswd_sethexpwd(hex_lm_passwd, lm_passwd,
- acct->acb_info);
+ a->acb_info);
smbpasswd_sethexpwd(hex_nt_passwd, nt_passwd,
- acct->acb_info);
+ a->acb_info);
/* Display user info */
printf("%s:%d:%s:%s:%s:LCT-0\n", acct_name,
- acct->user_rid, hex_lm_passwd, hex_nt_passwd,
+ a->user_rid, hex_lm_passwd, hex_nt_passwd,
smbpasswd_encode_acb_info(
deltas[i].account_info.acb_info));
}