зеркало из https://github.com/mozilla/pjs.git
fix for #5609 - don't add trailing "/" to base server URI
r=scottip a=chofmann (as with the last checkin as well)
This commit is contained in:
Родитель
60ed937e0b
Коммит
76eb2dfccb
|
@ -94,7 +94,7 @@ nsPop3IncomingServer::GetServerURI(char **uri)
|
|||
rv = GetHostName(&hostname);
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
|
||||
*uri = PR_smprintf("mailbox://%s/", hostname);
|
||||
*uri = PR_smprintf("mailbox://%s", hostname);
|
||||
|
||||
PR_Free(hostname);
|
||||
return rv;
|
||||
|
|
Загрузка…
Ссылка в новой задаче