From 2f32a9a4f3257220386d29d35d2bd22d691d8192 Mon Sep 17 00:00:00 2001 From: "darin%meer.net" Date: Mon, 29 Mar 2004 04:01:41 +0000 Subject: [PATCH] fixes bug 237686 "Mozilla cannot browse FTP server running under MVS, OS/390" r=dougt sr=bzbarsky a=asa --- netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp b/netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp index ea4a577367dc..ae9659a18762 100644 --- a/netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp +++ b/netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp @@ -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; }