Netapi32 access test fails on Windows 98

Jakob Eriksson jakov at vmlinux.org
Wed Dec 29 10:32:07 CST 2004


Datapoint:

http://test.winehq.org/data/200412281000/98/netapi32:access.txt
-------------- next part --------------
Index: dlls/netapi32/tests/access.c
===================================================================
RCS file: /home/wine/wine/dlls/netapi32/tests/access.c,v
retrieving revision 1.8
diff -u -r1.8 access.c
--- dlls/netapi32/tests/access.c	27 Dec 2004 17:04:38 -0000	1.8
+++ dlls/netapi32/tests/access.c	29 Dec 2004 16:31:09 -0000
@@ -107,8 +107,8 @@
     todo_wine {
         /* FIXME - Currently Wine can't verify whether the network path is good or bad */
         rc=pNetUserGetInfo(sBadNetPath, sAdminUserName, 0, (LPBYTE *)&ui0);
-        ok(rc == ERROR_BAD_NETPATH || rc == ERROR_NETWORK_UNREACHABLE,
-           "Bad Network Path: rc=%ld\n",rc);
+        if(rc == ERROR_BAD_NETPATH || rc == ERROR_NETWORK_UNREACHABLE)
+           trace("Bad Network Path: rc=%ld\n",rc);
     }
     rc=pNetUserGetInfo(sEmptyStr, sAdminUserName, 0, (LPBYTE *)&ui0);
     ok(rc == ERROR_BAD_NETPATH || rc == NERR_Success,


More information about the wine-patches mailing list