fixed bug 17176 -- [DOGFOOD] [Reqression] Can't save attachment; we are not generating message uri correctly; r=mscott

This commit is contained in:
jefft%netscape.com 1999-10-26 00:07:27 +00:00
Родитель d506cab3ce
Коммит d7e36bdecd
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -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 += '@';