This commit is contained in:
sspitzer%netscape.com 1999-05-04 21:26:28 +00:00
Родитель a8a6ff288e
Коммит 922268834e
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -544,7 +544,7 @@ nsresult nsImapUrl::ParseURL(const nsString& aSpec, const nsIURL* aURL)
// We have a port number
cp0 = cp+1;
cp = PL_strchr(cp, '/');
m_port = strtol(cp0, (char **)nsnull, 10);
m_port = strtol(cp0, (char **)nsnull, 10 /* base 10 */);
}
imapPartOfUrl = cp + 1; // #### probably not quite right - should check for "/"??
cp = PL_strchr(cp, '?');