summaryrefslogtreecommitdiffstats
path: root/source/rpcclient
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2004-05-05 02:49:44 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:51:25 -0500
commit2cbcc07b7b1b78b1bed95bfd8b8fc34016553201 (patch)
tree311a0b01b33135271f8a49d37c970e45cdb2671f /source/rpcclient
parent50ce579322ae394cb7c7a27e06f4ff08499b77b3 (diff)
downloadsamba-2cbcc07b7b1b78b1bed95bfd8b8fc34016553201.tar.gz
samba-2cbcc07b7b1b78b1bed95bfd8b8fc34016553201.tar.xz
samba-2cbcc07b7b1b78b1bed95bfd8b8fc34016553201.zip
r485: fix compile
Diffstat (limited to 'source/rpcclient')
-rw-r--r--source/rpcclient/cmd_samr.c5
1 files changed, 2 insertions, 3 deletions
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;