comment for clarity

git-svn-id: svn://10.0.0.236/trunk@30217 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
sspitzer%netscape.com
1999-05-04 21:26:28 +00:00
parent 9ee03491c8
commit d43c1b784b

View File

@@ -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, '?');