Commit 7930cc4c authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

ws2_32/tests: Skip adapters that aren't up and running in test_bind().

parent 1acb569a
......@@ -12209,6 +12209,8 @@ static void test_bind(void)
{
const IP_ADAPTER_UNICAST_ADDRESS *unicast_addr;
if (adapter->OperStatus != IfOperStatusUp) continue;
for (unicast_addr = adapter->FirstUnicastAddress; unicast_addr != NULL; unicast_addr = unicast_addr->Next)
{
short family = unicast_addr->Address.lpSockaddr->sa_family;
......
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