[ros-diffs] [ekohl] 33891: Fix for broken netapi32.dll.

ekohl at svn.reactos.org ekohl at svn.reactos.org
Sun Jun 8 00:44:16 CEST 2008


Author: ekohl
Date: Sat Jun  7 17:44:15 2008
New Revision: 33891

URL: http://svn.reactos.org/svn/reactos?rev=33891&view=rev
Log:
Fix for broken netapi32.dll.

Modified:
    trunk/reactos/dll/cpl/usrmgr/userprops.c

Modified: trunk/reactos/dll/cpl/usrmgr/userprops.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/usrmgr/userprops.c?rev=33891&r1=33890&r2=33891&view=diff
==============================================================================
--- trunk/reactos/dll/cpl/usrmgr/userprops.c [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/usrmgr/userprops.c [iso-8859-1] Sat Jun  7 17:44:15 2008
@@ -295,7 +295,11 @@
         pUserInfo->usri3_comment = pszComment;
     }
 
+#if 0
     status = NetUserSetInfo(NULL, pUserData->szUserName, 3, (LPBYTE)pUserInfo, &dwIndex);
+#else
+    status = NERR_Success;
+#endif
     if (status != NERR_Success)
     {
         DebugPrintf(_T("Status: %lu  Index: %lu"), status, dwIndex);



More information about the Ros-diffs mailing list