From 13293d5520c26d63e10d70b3a91b84f512f58a7c Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Wed, 5 May 2004 02:49:44 +0000 Subject: [PATCH] r485: fix compile --- source/rpc_client/cli_samr.c | 4 +--- source/rpcclient/cmd_samr.c | 5 ++--- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/source/rpc_client/cli_samr.c b/source/rpc_client/cli_samr.c index bcb4cb41054..86f65056897 100644 --- a/source/rpc_client/cli_samr.c +++ b/source/rpc_client/cli_samr.c @@ -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: diff --git a/source/rpcclient/cmd_samr.c b/source/rpcclient/cmd_samr.c index ed06a5a4a07..6ab08e1991b 100644 --- a/source/rpcclient/cmd_samr.c +++ b/source/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; -- 2.11.4.GIT