Module: wine Branch: master Commit: 6c0fdc05167a5a41b2a7f2f3748e97d17eb6a0a1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6c0fdc05167a5a41b2a7f2f374...
Author: Jeremy Audiger audiger@live.fr Date: Sat Jul 30 16:13:59 2016 +0000
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
---
dlls/winhttp/session.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/dlls/winhttp/session.c b/dlls/winhttp/session.c index 28587f5..30909ff 100644 --- a/dlls/winhttp/session.c +++ b/dlls/winhttp/session.c @@ -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 }