From: Vibhav Pant vibhavp@gmail.com
--- dlls/ws2_32/tests/sock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/ws2_32/tests/sock.c b/dlls/ws2_32/tests/sock.c index ff546f10ed3..f8d86950f3c 100644 --- a/dlls/ws2_32/tests/sock.c +++ b/dlls/ws2_32/tests/sock.c @@ -12817,7 +12817,7 @@ static void test_bind_bluetooth(void) err = WSAGetLastError(); if (sock == INVALID_SOCKET) { - ok(err == WSAEAFNOSUPPORT, "got error %d\n", err); + ok(err == WSAEAFNOSUPPORT || err == WSAEPROTONOSUPPORT, "got error %d\n", err); skip("Bluetooth is not supported\n"); return; }