Commit bbf5dae4 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

wininet: Use a direct connection for tests that connect to localhost.

parent ed1cb1f0
...@@ -1470,7 +1470,7 @@ static void test_basic_request(int port, const char *verb, const char *url) ...@@ -1470,7 +1470,7 @@ static void test_basic_request(int port, const char *verb, const char *url)
DWORD r, count; DWORD r, count;
char buffer[0x100]; char buffer[0x100];
hi = InternetOpen(NULL, 0, NULL, NULL, 0); hi = InternetOpen(NULL, INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
ok(hi != NULL, "open failed\n"); ok(hi != NULL, "open failed\n");
hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0); hc = InternetConnect(hi, "localhost", port, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
......
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