mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
msxml3: Recognise PROPFIND method in open().
This commit is contained in:
parent
96416c69ef
commit
d7a21dedbb
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue