bug 787190 - gconf system wide proxy settings for unix r=biesi

This commit is contained in:
Patrick McManus 2012-08-31 08:20:39 -04:00
Родитель 6addb88878
Коммит 407f92ea4a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -371,7 +371,7 @@ nsUnixSystemProxySettings::GetProxyFromGConf(const nsACString& aScheme,
{
bool masterProxySwitch = false;
mGConf->GetBool(NS_LITERAL_CSTRING("/system/http_proxy/use_http_proxy"), &masterProxySwitch);
if (!IsProxyMode("manual") || !masterProxySwitch) {
if (!(IsProxyMode("manual") || masterProxySwitch)) {
aResult.AppendLiteral("DIRECT");
return NS_OK;
}