Commit 8180e338 authored by Sven Baars's avatar Sven Baars Committed by Alexandre Julliard

urlmon/tests: Fix a test failure on Windows XP.

parent 9099b984
......@@ -3911,7 +3911,8 @@ static BOOL can_do_https(void)
ok(req != NULL, "HttpOpenRequest failed\n");
ret = HttpSendRequestA(req, NULL, 0, NULL, 0);
ok(ret || broken(GetLastError() == ERROR_INTERNET_CANNOT_CONNECT),
ok(ret || broken(GetLastError() == ERROR_INTERNET_CANNOT_CONNECT)
|| broken(GetLastError() == ERROR_INTERNET_SECURITY_CHANNEL_ERROR) /* WinXP */,
"request failed: %u\n", GetLastError());
InternetCloseHandle(req);
......
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