winhttp: Prevent console spamming in get_system_proxy_autoconfig_url.

Signed-off-by: Jérémy Audiger <audiger@live.fr>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Jeremy Audiger 2016-07-30 16:13:59 +00:00 committed by Alexandre Julliard
parent 5bc60d2342
commit 6c0fdc0516
1 changed files with 8 additions and 1 deletions

View File

@ -1351,7 +1351,14 @@ static BOOL get_system_proxy_autoconfig_url( char *buf, DWORD buflen )
CFRelease( settings );
return ret;
#else
FIXME( "no support on this platform\n" );
static BOOL first = TRUE;
if (first)
{
FIXME( "no support on this platform\n" );
first = FALSE;
}
else
TRACE( "no support on this platform\n" );
return FALSE;
#endif
}