From 7671f29d7146c75d57c4269867164a4ae9c8369c Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Wed, 5 May 2004 02:49:44 +0000 Subject: r485: fix compile (This used to be commit 2cbcc07b7b1b78b1bed95bfd8b8fc34016553201) --- source3/rpcclient/cmd_samr.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source3/rpcclient/cmd_samr.c') diff --git a/source3/rpcclient/cmd_samr.c b/source3/rpcclient/cmd_samr.c index ed06a5a4a0..6ab08e1991 100644 --- a/source3/rpcclient/cmd_samr.c +++ b/source3/rpcclient/cmd_samr.c @@ -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; -- cgit