Add a return value at the end of GetSmtpName to fix build breakage on windows. I don't know why VC6.0 let it go....

This commit is contained in:
mscott%netscape.com 1999-03-12 05:33:00 +00:00
Родитель 895b199ee2
Коммит f1ff990ae2
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -129,6 +129,8 @@ nsresult nsMsgIdentity::GetSmtpName(const char ** aSmtpName)
else // if we don't have a smtp name use the pop name...
return GetPopName(aSmtpName);
}
return NS_OK;
}
nsresult nsMsgIdentity::GetOrganization(const char ** aOrganization)