mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +00:00
[IPHLPAPI]
- Remove conditional redefine of DPRINT. Wine debug channels at this point, and we have NDEBUG. - Use TRACE instead of DbgPrint. Gets rid of the "Status 2" spam when no static nameserver is in the registry. svn path=/trunk/; revision=50384
This commit is contained in:
@@ -160,9 +160,4 @@ BOOL WINAPI
|
||||
GetComputerNameExA(COMPUTER_NAME_FORMAT,LPSTR,LPDWORD);
|
||||
#endif
|
||||
|
||||
#ifdef FORCE_DEBUG
|
||||
#undef DPRINT
|
||||
#define DPRINT(fmt,x...) DbgPrint("%s:%d:%s: " fmt, __FILE__, __LINE__, __FUNCTION__, ## x)
|
||||
#endif
|
||||
|
||||
#endif/*IPPRIVATE_H*/
|
||||
|
||||
@@ -47,6 +47,8 @@
|
||||
#include "iphlpapi.h"
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(iphlpapi);
|
||||
|
||||
typedef struct _NAME_SERVER_LIST_PRIVATE {
|
||||
UINT NumServers;
|
||||
IP_ADDR_STRING * pCurrent;
|
||||
@@ -74,7 +76,7 @@ QueryNameServer(
|
||||
if (Status != ERROR_SUCCESS)
|
||||
{
|
||||
/* failed to retrieve size */
|
||||
DbgPrint("Status %x\n", Status);
|
||||
TRACE("Status %x\n", Status);
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user