From a51b3804430c6964bb51bcd1d6d1b30ae0d3e671 Mon Sep 17 00:00:00 2001 From: "rpotts%netscape.com" Date: Wed, 6 Feb 2002 00:28:51 +0000 Subject: [PATCH] reverting to rev 1.115 to fix blocker bug #123572 --- netwerk/protocol/file/src/nsFileChannel.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/netwerk/protocol/file/src/nsFileChannel.cpp b/netwerk/protocol/file/src/nsFileChannel.cpp index c1a520425840..fc8936fb1732 100644 --- a/netwerk/protocol/file/src/nsFileChannel.cpp +++ b/netwerk/protocol/file/src/nsFileChannel.cpp @@ -242,11 +242,8 @@ nsFileChannel::EnsureTransport() getter_AddRefs(mFileTransport)); if (NS_FAILED(rv)) return rv; - mFileTransport->SetNotificationCallbacks(this, - ((mLoadFlags & LOAD_BACKGROUND) - ? nsITransport::DONT_REPORT_PROGRESS - : 0)); - + mFileTransport->SetNotificationCallbacks(mCallbacks, + (mLoadFlags & LOAD_BACKGROUND)); return rv; }