Skip to content
Snippets Groups Projects
Commit 5716f0d5 authored by alecf%netscape.com's avatar alecf%netscape.com
Browse files

fix for #5609 - don't add trailing "/" to base server URI

r=scottip a=chofmann (as with the last checkin as well)
parent 7ed0c1c3
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment