diff options
author | Volker Lendecke <vlendec@samba.org> | 2004-05-09 15:39:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:51:52 -0500 |
commit | 16f7b35a0acfe3e9f9b907bac462221a9165825f (patch) | |
tree | 9e31c2dbe063211f11329ef2aae619a10b7bdc08 /source4/torture/rpc | |
parent | c041077856badf5fa3f52e47267a24e6f5a11e3d (diff) | |
download | samba-16f7b35a0acfe3e9f9b907bac462221a9165825f.tar.gz samba-16f7b35a0acfe3e9f9b907bac462221a9165825f.tar.bz2 samba-16f7b35a0acfe3e9f9b907bac462221a9165825f.zip |
r615: Implement samr_OpenGroup, samr_QueryGroupInfo, samr_SetGroupInfo,
samr_DeleteDomainGroup.
I've added the hidden attribute numMembers that must be maintained by
Add/DelGroupMember for the GroupInfoAll query.
Volker
(This used to be commit 945d7478605c1bd67e4162ebb0635ab7da11faaf)
Diffstat (limited to 'source4/torture/rpc')
-rw-r--r-- | source4/torture/rpc/samr.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/torture/rpc/samr.c b/source4/torture/rpc/samr.c index 11d71d6098..dc6a1a27dd 100644 --- a/source4/torture/rpc/samr.c +++ b/source4/torture/rpc/samr.c @@ -1615,6 +1615,10 @@ static BOOL test_SetGroupInfo(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, s.in.level = levels[i]; s.in.info = r.out.info; + if (s.in.level == 2) { + init_samr_Name(&s.in.info->name, "NewName"); + } + if (s.in.level == 4) { init_samr_Name(&s.in.info->description, "test description"); } |