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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;