Commit 9d4c42a5 authored by Eric Durbin's avatar Eric Durbin Committed by Alexandre Julliard

iphlpapi: Downgrade some ERR messages to WARN.

parent a00e693f
...@@ -995,7 +995,7 @@ DWORD getRouteTable(PMIB_IPFORWARDTABLE *ppIpForwardTable, HANDLE heap, ...@@ -995,7 +995,7 @@ DWORD getRouteTable(PMIB_IPFORWARDTABLE *ppIpForwardTable, HANDLE heap,
addr = 0; addr = 0;
else if (sa->sa_family != AF_INET) else if (sa->sa_family != AF_INET)
{ {
ERR ("Received unsupported sockaddr family 0x%x\n", WARN ("Received unsupported sockaddr family 0x%x\n",
sa->sa_family); sa->sa_family);
addr = 0; addr = 0;
} }
...@@ -1021,7 +1021,7 @@ DWORD getRouteTable(PMIB_IPFORWARDTABLE *ppIpForwardTable, HANDLE heap, ...@@ -1021,7 +1021,7 @@ DWORD getRouteTable(PMIB_IPFORWARDTABLE *ppIpForwardTable, HANDLE heap,
break; break;
default: default:
ERR ("Unexpected address type 0x%x\n", i); WARN ("Unexpected address type 0x%x\n", i);
} }
} }
......
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