mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
[netapi32]
sync netapi32 with wine 1.1.35 svn path=/trunk/; revision=44731
This commit is contained in:
parent
e2af57a32d
commit
2ee611e9c9
1 changed files with 2 additions and 2 deletions
|
@ -494,7 +494,7 @@ static void ACCESS_QueryAdminDisplayInformation(PNET_DISPLAY_USER *buf, PDWORD p
|
||||||
PNET_DISPLAY_USER usr;
|
PNET_DISPLAY_USER usr;
|
||||||
|
|
||||||
/* set up buffer */
|
/* set up buffer */
|
||||||
name_sz = lstrlenW(sAdminUserName);
|
name_sz = lstrlenW(sAdminUserName) + 1;
|
||||||
comment_sz = 1;
|
comment_sz = 1;
|
||||||
full_name_sz = 1;
|
full_name_sz = 1;
|
||||||
|
|
||||||
|
@ -533,7 +533,7 @@ static void ACCESS_QueryGuestDisplayInformation(PNET_DISPLAY_USER *buf, PDWORD p
|
||||||
PNET_DISPLAY_USER usr;
|
PNET_DISPLAY_USER usr;
|
||||||
|
|
||||||
/* set up buffer */
|
/* set up buffer */
|
||||||
name_sz = lstrlenW(sGuestUserName);
|
name_sz = lstrlenW(sGuestUserName) + 1;
|
||||||
comment_sz = 1;
|
comment_sz = 1;
|
||||||
full_name_sz = 1;
|
full_name_sz = 1;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue