From e54841f4dc21b2ade71be2fb8a8a65df4cf37b27 Mon Sep 17 00:00:00 2001 From: "kzhou%netscape.com" Date: Thu, 3 Aug 2000 20:05:22 +0000 Subject: [PATCH] bug #46136. r:valeski, a:leaf. Reset mIP6vChecked as PR_FASLE to prevent browser from hunging for ftp protocol git-svn-id: svn://10.0.0.236/trunk@75501 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mozilla/netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp b/mozilla/netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp index d435ab18ba8..dd63de1e300 100644 --- a/mozilla/netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp +++ b/mozilla/netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp @@ -295,6 +295,9 @@ nsFtpConnectionThread::Process() { // that the max number of users has been reached... mState = FTP_COMMAND_CONNECT; mNextState = FTP_S_USER; + if (mIPv6Checked) { + mIPv6Checked = PR_FALSE; + } } else { PR_LOG(gFTPLog, PR_LOG_DEBUG, ("%x Process() - ERROR\n", mURL.get())); rv = StopProcessing();