Commit 4b451853 authored by Kai Blin's avatar Kai Blin Committed by Alexandre Julliard

netapi32: Downgrade a FIXME and an ERR to a trace to not clutter test output on…

netapi32: Downgrade a FIXME and an ERR to a trace to not clutter test output on handled error conditions.
parent 8f14d463
...@@ -91,7 +91,7 @@ static BOOL NETAPI_IsKnownUser(LPCWSTR UserName) ...@@ -91,7 +91,7 @@ static BOOL NETAPI_IsKnownUser(LPCWSTR UserName)
#define NETAPI_ForceKnownUser(UserName, FailureCode) \ #define NETAPI_ForceKnownUser(UserName, FailureCode) \
if (!NETAPI_IsKnownUser(UserName)) \ 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)); \ debugstr_w(UserName)); \
return FailureCode; \ return FailureCode; \
} }
...@@ -296,7 +296,7 @@ NetUserGetInfo(LPCWSTR servername, LPCWSTR username, DWORD level, ...@@ -296,7 +296,7 @@ NetUserGetInfo(LPCWSTR servername, LPCWSTR username, DWORD level,
return NERR_InternalError; return NERR_InternalError;
} }
default: default:
ERR("Invalid level %d is specified\n", level); TRACE("Invalid level %d is specified\n", level);
return ERROR_INVALID_LEVEL; return ERROR_INVALID_LEVEL;
} }
return NERR_Success; return NERR_Success;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment