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>
This commit is contained in:
parent
5bc60d2342
commit
6c0fdc0516
|
@ -1351,7 +1351,14 @@ static BOOL get_system_proxy_autoconfig_url( char *buf, DWORD buflen )
|
|||
CFRelease( settings );
|
||||
return ret;
|
||||
#else
|
||||
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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue