Secon attempt to fix RTM++ bug # 54626: ftp dir resolution. r=waterson sr=gagan

This commit is contained in:
rjc%netscape.com 2000-10-04 22:58:54 +00:00
Родитель 1ca69a20fc
Коммит e75494be4b
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -1065,11 +1065,11 @@ nsFtpConnectionThread::R_pwd() {
nsCAutoString tmpPath;
mResponseMsg.Mid(tmpPath, beginQ+1, (endQ-beginQ-1));
if (tmpPath.Length() <= 1)
nsCAutoString modPath(mPath);
if ((modPath.Length() > 0) && (!modPath.Equals("/")))
{
tmpPath = "";
tmpPath = modPath;
}
tmpPath.Append(mPath);
mResponseMsg = tmpPath;
mURL->SetPath(tmpPath);