Commit bf5c2e85 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

urlmon: Fixed tests on IE older than 8.

parent a0aaa655
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment