diff options
author | Gerald Carter <jerry@samba.org> | 2004-05-05 02:49:44 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:51:25 -0500 |
commit | 7671f29d7146c75d57c4269867164a4ae9c8369c (patch) | |
tree | 39e62f5c21247d03823c0ab5ac599d8aa9738fc2 /source3/rpc_client | |
parent | 9294acabb403d0309c408f84fee5878100481da4 (diff) | |
download | samba-7671f29d7146c75d57c4269867164a4ae9c8369c.tar.gz samba-7671f29d7146c75d57c4269867164a4ae9c8369c.tar.bz2 samba-7671f29d7146c75d57c4269867164a4ae9c8369c.zip |
r485: fix compile
(This used to be commit 2cbcc07b7b1b78b1bed95bfd8b8fc34016553201)
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_samr.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/rpc_client/cli_samr.c b/source3/rpc_client/cli_samr.c index bcb4cb4105..86f6505689 100644 --- a/source3/rpc_client/cli_samr.c +++ b/source3/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: |