mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
winhttp: Show discovery via DHCP not supported just one time.
This commit is contained in:
parent
9e183990f2
commit
37431c5b88
1 changed files with 5 additions and 1 deletions
|
@ -1194,7 +1194,11 @@ BOOL WINAPI WinHttpDetectAutoProxyConfigUrl( DWORD flags, LPWSTR *url )
|
|||
set_last_error( ERROR_INVALID_PARAMETER );
|
||||
return FALSE;
|
||||
}
|
||||
if (flags & WINHTTP_AUTO_DETECT_TYPE_DHCP) FIXME("discovery via DHCP not supported\n");
|
||||
if (flags & WINHTTP_AUTO_DETECT_TYPE_DHCP)
|
||||
{
|
||||
static int fixme_shown;
|
||||
if (!fixme_shown++) FIXME("discovery via DHCP not supported\n");
|
||||
}
|
||||
if (flags & WINHTTP_AUTO_DETECT_TYPE_DNS_A)
|
||||
{
|
||||
#ifdef HAVE_GETADDRINFO
|
||||
|
|
Loading…
Reference in a new issue