From 7ab27912da4c4f277faa7b4fd244d54a99759ca4 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Sun, 2 Dec 2007 16:54:32 +0000 Subject: [PATCH] - Hackfix the build: remove the function call to NetUserSetInfo (#if0/#endif). Eric, please, do a proper fix and revert this commit when it's ready. svn path=/trunk/; revision=30962 --- reactos/dll/cpl/usrmgr/users.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/reactos/dll/cpl/usrmgr/users.c b/reactos/dll/cpl/usrmgr/users.c index b48711a4bc5..c851ac31264 100644 --- a/reactos/dll/cpl/usrmgr/users.c +++ b/reactos/dll/cpl/usrmgr/users.c @@ -205,7 +205,11 @@ OnEndLabelEdit(LPNMLVDISPINFO pnmv) useri0.usri0_name = szNewUserName; +#if 0 status = NetUserSetInfo(NULL, szOldUserName, 0, (LPBYTE)&useri0, NULL); +#else + status = NERR_Success; +#endif if (status != NERR_Success) { TCHAR szText[256];