Fix the bad prefs returning a value for non-existent proxy port. Fixes today morning horkage in service.

This commit is contained in:
gagan%netscape.com 1999-09-20 18:56:44 +00:00
Родитель f63920c9a2
Коммит 57feefab37
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -124,7 +124,7 @@ nsHTTPHandler::nsHTTPHandler():mProxy(nsnull)
printf("Read HTTP proxy = %s:%d\n", (const char*)proxyServer,proxyPort);
#endif
if (NS_SUCCEEDED(rv))
if (NS_SUCCEEDED(rv) && (proxyPort>0)) // currently a bug in IntPref
{
if (NS_FAILED(SetProxyHost(proxyServer)))
NS_ERROR("Failed to set the HTTP proxy server");