mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
netapi32: Downgrade a FIXME and an ERR to a trace to not clutter test output on handled error conditions.
This commit is contained in:
parent
8f14d4639d
commit
4b4518532a
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user