Bug 523127 - Firefox can't list directories on Sysax FTP server. r=dougt, sr=biesi

This commit is contained in:
Michal Novotny 2010-06-11 20:52:24 +02:00
parent 91e11b4fc1
commit 07cfcdf8bb

View File

@ -1538,7 +1538,7 @@ nsFtpState::R_pasv() {
mDataStream = do_QueryInterface(input);
}
if (mRETRFailed || (!mPath.IsEmpty() && mPath.Last() == '/'))
if (mRETRFailed || mPath.IsEmpty() || mPath.Last() == '/')
return FTP_S_CWD;
return FTP_S_SIZE;
}