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

oldstable
Kai Blin 2007-03-18 19:52:29 +01:00 committed by Alexandre Julliard
parent 8f14d4639d
commit 4b4518532a
1 changed files with 2 additions and 2 deletions

View File

@ -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;