Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
35798002
Commit
35798002
authored
Jun 12, 2009
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 12, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Fixed test on IE8.
parent
9ae0f7a1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
bindctx.c
dlls/urlmon/bindctx.c
+1
-1
url.c
dlls/urlmon/tests/url.c
+1
-1
No files found.
dlls/urlmon/bindctx.c
View file @
35798002
...
...
@@ -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_
FAI
L
;
return
E_
NOTIMP
L
;
return
IHttpNegotiate2_GetRootSecurityId
(
This
->
http_negotiate2
,
pbSecurityId
,
pcbSecurityId
,
dwReserved
);
...
...
dlls/urlmon/tests/url.c
View file @
35798002
...
...
@@ -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
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment