From 57ef5082cc2be37238463822fa1e33d90399fade Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Thu, 13 Jun 2013 19:51:14 +0000 Subject: [PATCH] [NETAPI32] NetLocalGroupSetInfo: Implement level 1002. svn path=/trunk/; revision=59209 --- reactos/dll/win32/netapi32/local_group.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/reactos/dll/win32/netapi32/local_group.c b/reactos/dll/win32/netapi32/local_group.c index 8a34f0eeb87..9f49f50ef64 100644 --- a/reactos/dll/win32/netapi32/local_group.c +++ b/reactos/dll/win32/netapi32/local_group.c @@ -1817,9 +1817,14 @@ NetLocalGroupSetInfo( break; case 1: + case 1002: /* Set the alias admin comment */ - RtlInitUnicodeString(&AdminCommentInfo.AdminComment, - ((PLOCALGROUP_INFO_1)buf)->lgrpi1_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,