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

netapi: fix NetGroupDel() against NT4.

Guenther
(This used to be commit 55035d7240)
This commit is contained in:
Günther Deschner 2008-07-18 01:11:08 +02:00
parent d711db5811
commit 0f966cfd8a

View File

@ -313,11 +313,13 @@ WERROR NetGroupDel_r(struct libnetapi_ctx *ctx,
goto done;
}
#if 0
/* breaks against NT4 */
if (!(info->attributes.attributes & SE_GROUP_ENABLED)) {
werr = WERR_ACCESS_DENIED;
goto done;
}
#endif
status = rpccli_samr_QueryGroupMember(pipe_cli, ctx,
&group_handle,
&rid_array);