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:
alecf%netscape.com 1999-04-30 19:59:11 +00:00
Родитель 60ed937e0b
Коммит 76eb2dfccb
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -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;