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
d7a21ded
Commit
d7a21ded
authored
Jun 23, 2012
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 25, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Recognise PROPFIND method in open().
parent
96416c69
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
httprequest.c
dlls/msxml3/httprequest.c
+3
-1
No files found.
dlls/msxml3/httprequest.c
View file @
d7a21ded
...
...
@@ -759,6 +759,7 @@ static HRESULT httprequest_open(httprequest *This, BSTR method, BSTR url,
static
const
WCHAR
MethodPutW
[]
=
{
'P'
,
'U'
,
'T'
,
0
};
static
const
WCHAR
MethodPostW
[]
=
{
'P'
,
'O'
,
'S'
,
'T'
,
0
};
static
const
WCHAR
MethodDeleteW
[]
=
{
'D'
,
'E'
,
'L'
,
'E'
,
'T'
,
'E'
,
0
};
static
const
WCHAR
MethodPropFindW
[]
=
{
'P'
,
'R'
,
'O'
,
'P'
,
'F'
,
'I'
,
'N'
,
'D'
,
0
};
VARIANT
str
,
is_async
;
HRESULT
hr
;
...
...
@@ -782,7 +783,8 @@ static HRESULT httprequest_open(httprequest *This, BSTR method, BSTR url,
{
This
->
verb
=
BINDVERB_POST
;
}
else
if
(
!
strcmpiW
(
method
,
MethodDeleteW
))
else
if
(
!
strcmpiW
(
method
,
MethodDeleteW
)
||
!
strcmpiW
(
method
,
MethodPropFindW
))
{
This
->
verb
=
BINDVERB_CUSTOM
;
SysReAllocString
(
&
This
->
custom
,
method
);
...
...
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