Commit 282b9c7b authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

wininet: Use a semicolon to delimit registered proxy servers.

parent e759105c
......@@ -585,7 +585,7 @@ static LONG INTERNET_LoadProxySettings( proxyinfo_t *lpwpi )
p += lstrlenW( szHttp );
lstrcpyW( szProxy, p );
}
p = strchrW( szProxy, ' ' );
p = strchrW( szProxy, ';' );
if (p) *p = 0;
lpwpi->proxy = szProxy;
......
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