mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 20:43:18 +00:00
[NETAPI32]
NetLocalGroupSetInfo: Implement level 1002. svn path=/trunk/; revision=59209
This commit is contained in:
parent
8f14288280
commit
57ef5082cc
1 changed files with 7 additions and 2 deletions
|
@ -1817,9 +1817,14 @@ NetLocalGroupSetInfo(
|
|||
break;
|
||||
|
||||
case 1:
|
||||
case 1002:
|
||||
/* Set the alias admin comment */
|
||||
if (level == 1)
|
||||
RtlInitUnicodeString(&AdminCommentInfo.AdminComment,
|
||||
((PLOCALGROUP_INFO_1)buf)->lgrpi1_comment);
|
||||
else
|
||||
RtlInitUnicodeString(&AdminCommentInfo.AdminComment,
|
||||
((PLOCALGROUP_INFO_1002)buf)->lgrpi1002_comment);
|
||||
|
||||
Status = SamSetInformationAlias(AliasHandle,
|
||||
AliasAdminCommentInformation,
|
||||
|
|
Loading…
Reference in a new issue