From d7e36bdecd1c5e22bab2e80af3d97bc65b4766a5 Mon Sep 17 00:00:00 2001 From: "jefft%netscape.com" Date: Tue, 26 Oct 1999 00:07:27 +0000 Subject: [PATCH] fixed bug 17176 -- [DOGFOOD] [Reqression] Can't save attachment; we are not generating message uri correctly; r=mscott --- mailnews/imap/src/nsImapUrl.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mailnews/imap/src/nsImapUrl.cpp b/mailnews/imap/src/nsImapUrl.cpp index da0bcfd57664..0c43ea7a0e09 100644 --- a/mailnews/imap/src/nsImapUrl.cpp +++ b/mailnews/imap/src/nsImapUrl.cpp @@ -959,7 +959,8 @@ nsImapUrl::GetURI(char** aURI) #else // jefft -- indeed that is wrong CreateCanonicalSourceFolderPathString(getter_Copies(theFile)); - nsCString fullFolderPath = (const char *) m_userName; + nsCString fullFolderPath = "/"; + fullFolderPath += (const char *) m_userName; char *hostName = nsnull; rv = GetHost(&hostName); fullFolderPath += '@';