1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-01 04:58:35 +03:00

If there are no alias members, don't ask for their sids :-)

Volker
(This used to be commit 99f03a641e4fd75c3bafb8bd153687743317a3dc)
This commit is contained in:
Volker Lendecke 2004-02-17 10:08:18 +00:00
parent 269082724a
commit 6b7e509004

View File

@ -1342,6 +1342,10 @@ rpc_list_alias_members(struct cli_state *cli, TALLOC_CTX *mem_ctx,
return result;
}
if (num_members == 0) {
return NT_STATUS_OK;
}
cli_nt_session_close(cli);
if (!cli_nt_session_open(cli, PI_LSARPC)) {