r/sr sspitzer, a=blizzard@redhat.com
This commit is contained in:
dougt%netscape.com 2001-06-06 18:10:34 +00:00
Родитель 87943af556
Коммит c2be35a136
3 изменённых файлов: 3 добавлений и 9 удалений

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

@ -642,7 +642,7 @@ nsresult nsPop3Protocol::LoadUrl(nsIURI* aURL, nsISupports * /* aConsumer */)
if (NS_FAILED(rv))
return rv;
rv = NS_CheckPortSafety(port, "pop3");
rv = NS_CheckPortSafety(port, "pop");
if (NS_FAILED(rv))
return rv;

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

@ -314,10 +314,7 @@ NS_IMETHODIMP nsPop3Service::GetDefaultPort(PRInt32 *aDefaultPort)
NS_IMETHODIMP nsPop3Service::AllowPort(PRInt32 port, const char *scheme, PRBool *_retval)
{
if (port == POP3_PORT || port == 593) // 593 is POP3/SSL
*_retval = PR_TRUE;
else
*_retval = PR_FALSE;
*_retval = PR_TRUE; // allow pop on any port
return NS_OK;
}

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

@ -1202,10 +1202,7 @@ NS_IMETHODIMP nsNntpService::GetDefaultPort(PRInt32 *aDefaultPort)
NS_IMETHODIMP nsNntpService::AllowPort(PRInt32 port, const char *scheme, PRBool *_retval)
{
if (port == NEWS_PORT || port == 995 || port == 532) // port 995 is NNTP/SSL, 532 is netnews
*_retval = PR_TRUE;
else
*_retval = PR_FALSE;
*_retval = PR_TRUE; // allow news on any port
return NS_OK;
}