mirror of
https://github.com/reactos/wine.git
synced 2025-02-02 02:04:34 +00:00
urlmon: Fixed test on IE8.
This commit is contained in:
parent
9ae0f7a191
commit
35798002f8
@ -386,7 +386,7 @@ static HRESULT WINAPI BSCHttpNegotiate_GetRootSecurityId(IHttpNegotiate2 *iface,
|
||||
TRACE("(%p)->(%p %p %ld)\n", This, pbSecurityId, pcbSecurityId, dwReserved);
|
||||
|
||||
if(!This->http_negotiate2)
|
||||
return E_FAIL;
|
||||
return E_NOTIMPL;
|
||||
|
||||
return IHttpNegotiate2_GetRootSecurityId(This->http_negotiate2, pbSecurityId,
|
||||
pcbSecurityId, dwReserved);
|
||||
|
@ -1963,7 +1963,7 @@ static BOOL test_bscholder(IBindStatusCallback *holder)
|
||||
if(SUCCEEDED(hres)) {
|
||||
have_IHttpNegotiate2 = TRUE;
|
||||
hres = IHttpNegotiate2_GetRootSecurityId(http_negotiate2, (void*)0xdeadbeef, (void*)0xdeadbeef, 0);
|
||||
ok(hres == E_FAIL, "GetRootSecurityId failed: %08x\n", hres);
|
||||
ok(hres == E_FAIL || hres == E_NOTIMPL, "GetRootSecurityId failed: %08x\n", hres);
|
||||
|
||||
SET_EXPECT(QueryInterface_IHttpNegotiate2);
|
||||
hres = IServiceProvider_QueryService(serv_prov, &IID_IHttpNegotiate2, &IID_IHttpNegotiate2,
|
||||
|
Loading…
x
Reference in New Issue
Block a user