fixes bug 237686 "Mozilla cannot browse FTP server running under MVS, OS/390" r=dougt sr=bzbarsky a=asa

This commit is contained in:
darin%meer.net 2004-03-29 04:01:41 +00:00
Родитель 256c91d0ae
Коммит 2f32a9a4f3
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1192,7 +1192,9 @@ nsFtpState::R_syst() {
if (( mResponseMsg.Find("L8") > -1) ||
( mResponseMsg.Find("UNIX") > -1) ||
( mResponseMsg.Find("BSD") > -1) ||
( mResponseMsg.Find("MACOS Peter's Server") > -1))
( mResponseMsg.Find("MACOS Peter's Server") > -1) ||
( mResponseMsg.Find("MVS") > -1) ||
( mResponseMsg.Find("OS/390") > -1))
{
mServerType = FTP_UNIX_TYPE;
}