From bf5c2e858fdccbfd4192dcf619461c93a64ca7a1 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Sat, 22 Aug 2009 19:22:11 +0200 Subject: [PATCH] urlmon: Fixed tests on IE older than 8. --- dlls/urlmon/tests/protocol.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/urlmon/tests/protocol.c b/dlls/urlmon/tests/protocol.c index b8e6e98d20e..0c7932a3849 100644 --- a/dlls/urlmon/tests/protocol.c +++ b/dlls/urlmon/tests/protocol.c @@ -672,7 +672,8 @@ static HRESULT WINAPI ProtocolSink_ReportData(IInternetProtocolSink *iface, DWOR CHECK_EXPECT2(ReportData); if(short_read) { - ok(grfBSCF == (BSCF_FIRSTDATANOTIFICATION|BSCF_LASTDATANOTIFICATION|BSCF_DATAFULLYAVAILABLE), + ok(grfBSCF == (BSCF_FIRSTDATANOTIFICATION|BSCF_LASTDATANOTIFICATION|BSCF_DATAFULLYAVAILABLE) + || grfBSCF == BSCF_FIRSTDATANOTIFICATION, /* < IE8 */ "grcfBSCF = %08x\n", grfBSCF); CHECK_CALLED(Read); /* Set in Continue */ first_data_notif = FALSE; -- 2.11.4.GIT