1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

r485: fix compile

(This used to be commit 2cbcc07b7b1b78b1bed95bfd8b8fc34016553201)
This commit is contained in:
Gerald Carter 2004-05-05 02:49:44 +00:00 committed by Gerald (Jerry) Carter
parent 9294acabb4
commit 7671f29d71
2 changed files with 3 additions and 6 deletions

View File

@ -2095,7 +2095,7 @@ NTSTATUS cli_samr_query_sec_obj(struct cli_state *cli, TALLOC_CTX *mem_ctx,
/* Get domain password info */
NTSTATUS cli_samr_get_dom_pwinfo(struct cli_state *cli, TALLOC_CTX *mem_ctx,
uint16 *unk_0, uint16 *unk_1, uint16 *unk_2)
uint16 *unk_0, uint16 *unk_1)
{
prs_struct qbuf, rbuf;
SAMR_Q_GET_DOM_PWINFO q;
@ -2134,8 +2134,6 @@ NTSTATUS cli_samr_get_dom_pwinfo(struct cli_state *cli, TALLOC_CTX *mem_ctx,
*unk_0 = r.unk_0;
if (unk_1)
*unk_1 = r.unk_1;
if (unk_2)
*unk_2 = r.unk_2;
}
done:

View File

@ -1470,19 +1470,18 @@ static NTSTATUS cmd_samr_get_dom_pwinfo(struct cli_state *cli,
int argc, const char **argv)
{
NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
uint16 unk_0, unk_1, unk_2;
uint16 unk_0, unk_1;
if (argc != 1) {
printf("Usage: %s\n", argv[0]);
return NT_STATUS_OK;
}
result = cli_samr_get_dom_pwinfo(cli, mem_ctx, &unk_0, &unk_1, &unk_2);
result = cli_samr_get_dom_pwinfo(cli, mem_ctx, &unk_0, &unk_1) ;
if (NT_STATUS_IS_OK(result)) {
printf("unk_0 = 0x%08x\n", unk_0);
printf("unk_1 = 0x%08x\n", unk_1);
printf("unk_2 = 0x%08x\n", unk_2);
}
return result;