winhttp: Only output fixme for unhandled resolve timeout.

This commit is contained in:
Juan Lang 2009-07-23 09:12:29 -07:00 committed by Alexandre Julliard
parent 68039dcaff
commit 2b99adc2f1
1 changed files with 2 additions and 1 deletions

View File

@ -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 )))
{