wininet: Use a semicolon to delimit registered proxy servers.

This commit is contained in:
Hans Leidekker 2014-05-06 11:31:35 +02:00 committed by Alexandre Julliard
parent e759105cdd
commit 282b9c7bb7
1 changed files with 1 additions and 1 deletions

View File

@ -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;