[NETSH] Silence some debug messages

This commit is contained in:
Eric Kohl
2026-07-11 19:11:09 +02:00
parent 34d71f7879
commit 776b4389f8
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -921,7 +921,7 @@ RegisterContext(
DWORD i, j;
DWORD dwError = ERROR_SUCCESS;
DPRINT1("RegisterContext(%p)\n", pChildContext);
DPRINT("RegisterContext(%p)\n", pChildContext);
if (pChildContext == NULL)
{
DPRINT1("Invalid child context!\n");
+3 -3
View File
@@ -207,7 +207,7 @@ LoadHelperDll(
dwError = pInitHelperDll(5, NULL);
pCurrentDll = NULL;
DPRINT1("InitHelperDll returned %lu\n", dwError);
DPRINT("InitHelperDll returned %lu\n", dwError);
if (dwError != ERROR_SUCCESS)
{
DPRINT1("Call to InitHelperDll failed (Error: %lu)\n", dwError);
@@ -269,7 +269,7 @@ LoadHelpers(VOID)
DWORD dwNameLength, dwValueLength, dwType;
DWORD dwIndex, dwError;
DPRINT1("LoadHelpers()\n");
DPRINT("LoadHelpers()\n");
dwError = RegOpenKeyExW(HKEY_LOCAL_MACHINE,
REG_NETSH_PATH,
@@ -319,7 +319,7 @@ LoadHelpers(VOID)
if (dwError != ERROR_SUCCESS)
break;
DPRINT1("Dll: %S --> %S %lu\n", pszNameBuffer, pszValueBuffer, dwError);
DPRINT("Dll: %S --> %S %lu\n", pszNameBuffer, pszValueBuffer, dwError);
LoadHelperDll(pszValueBuffer, FALSE);
}