Kai Blin : netapi32: Downgrade a FIXME and an ERR to a trace to not clutter test output on handled error conditions .

Alexandre Julliard julliard at wine.codeweavers.com
Mon Mar 19 08:17:39 CDT 2007


Module: wine
Branch: master
Commit: 4b4518532a797a97e0a8ffc3cd6ed3d9a5031e5d
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=4b4518532a797a97e0a8ffc3cd6ed3d9a5031e5d

Author: Kai Blin <kai.blin at gmail.com>
Date:   Sun Mar 18 19:52:29 2007 +0100

netapi32: Downgrade a FIXME and an ERR to a trace to not clutter test output on handled error conditions.

---

 dlls/netapi32/access.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/netapi32/access.c b/dlls/netapi32/access.c
index 94d8b23..a839012 100644
--- a/dlls/netapi32/access.c
+++ b/dlls/netapi32/access.c
@@ -91,7 +91,7 @@ static BOOL NETAPI_IsKnownUser(LPCWSTR UserName)
 #define NETAPI_ForceKnownUser(UserName, FailureCode) \
     if (!NETAPI_IsKnownUser(UserName)) \
     { \
-        FIXME("Can't find information for user %s\n", \
+        TRACE("Can't find information for user %s\n", \
               debugstr_w(UserName)); \
         return FailureCode; \
     }
@@ -296,7 +296,7 @@ NetUserGetInfo(LPCWSTR servername, LPCWSTR username, DWORD level,
         return NERR_InternalError;
     }
     default:
-        ERR("Invalid level %d is specified\n", level);
+        TRACE("Invalid level %d is specified\n", level);
         return ERROR_INVALID_LEVEL;
     }
     return NERR_Success;




More information about the wine-cvs mailing list