Commit b688fd0d authored by Andrew Eikum's avatar Andrew Eikum Committed by Alexandre Julliard

mshtml: Return success in HTTPChannel::SetRequestMethod.

Request method is determined by Wine on bind, so return success in this function to make Gecko happy.
parent 23547c0f
......@@ -933,9 +933,9 @@ static nsresult NSAPI nsChannel_SetRequestMethod(nsIHttpChannel *iface,
{
nsChannel *This = NSCHANNEL_THIS(iface);
FIXME("(%p)->(%p)\n", This, aRequestMethod);
TRACE("(%p)->(%p): Returning NS_OK\n", This, aRequestMethod);
return NS_ERROR_NOT_IMPLEMENTED;
return NS_OK;
}
static nsresult NSAPI nsChannel_GetReferrer(nsIHttpChannel *iface, nsIURI **aReferrer)
......
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