1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

The final SAM_USER_INFO massacre.

I compared those very thoroughly with the idl ones but couldn't find any bits
that were missing (except for the very obscure (and totally unused)
SAM_USER_INFO_17 structure which I think was totally wrong).

Guenther
(This used to be commit e7192818f7)
This commit is contained in:
Günther Deschner
2008-02-12 21:11:03 +01:00
parent 68855a99d0
commit a9cf5a0e9c
3 changed files with 0 additions and 1982 deletions

View File

@ -462,54 +462,3 @@ NTSTATUS rpccli_samr_lookup_rids(struct rpc_pipe_client *cli,
return result;
}
/* Set userinfo */
NTSTATUS rpccli_samr_set_userinfo(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
const POLICY_HND *user_pol, uint16 switch_value,
DATA_BLOB *sess_key, SAM_USERINFO_CTR *ctr)
{
prs_struct qbuf, rbuf;
SAMR_Q_SET_USERINFO q;
SAMR_R_SET_USERINFO r;
NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
DEBUG(10,("cli_samr_set_userinfo\n"));
ZERO_STRUCT(q);
ZERO_STRUCT(r);
if (!sess_key->length) {
DEBUG(1, ("No user session key\n"));
return NT_STATUS_NO_USER_SESSION_KEY;
}
/* Initialise parse structures */
prs_init(&qbuf, RPC_MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
/* Marshall data and send request */
q.ctr = ctr;
init_samr_q_set_userinfo(&q, user_pol, sess_key, switch_value,
ctr->info.id);
CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_SET_USERINFO,
q, r,
qbuf, rbuf,
samr_io_q_set_userinfo,
samr_io_r_set_userinfo,
NT_STATUS_UNSUCCESSFUL);
/* Return output parameters */
if (!NT_STATUS_IS_OK(result = r.status)) {
goto done;
}
done:
return result;
}