Commit 6c0fdc05 authored by Jeremy Audiger's avatar Jeremy Audiger Committed by Alexandre Julliard

winhttp: Prevent console spamming in get_system_proxy_autoconfig_url.

parent 5bc60d23
......@@ -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
}
......
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