Commit 2b99adc2 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

winhttp: Only output fixme for unhandled resolve timeout.

parent 68039dca
......@@ -1169,7 +1169,8 @@ BOOL WINAPI WinHttpSetTimeouts( HINTERNET handle, int resolve, int connect, int
return FALSE;
}
FIXME("resolve timeout not supported\n");
if (resolve > 0)
FIXME("resolve timeout (%d) not supported\n", resolve);
if (!(request = (request_t *)grab_object( handle )))
{
......
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