1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

rpcclient: Remove domain sid check

The samr calls can take care of this on their own

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2019-09-27 19:22:55 -07:00 committed by Jeremy Allison
parent cb0b54d9ac
commit 8a09467221

View File

@ -855,12 +855,6 @@ static NTSTATUS do_cmd(struct cli_state *cli,
TALLOC_CTX *mem_ctx;
if (cmd_entry->table == &ndr_table_samr &&
!dom_sid_is_valid_account_domain(&domain_sid))
{
return NT_STATUS_INVALID_DOMAIN_STATE;
}
/* Create mem_ctx */
if (!(mem_ctx = talloc_stackframe())) {