mshtml: Added nsIChannel::GetRequestHeader implementation.

This commit is contained in:
Jacek Caban 2010-08-03 21:39:49 +02:00 committed by Alexandre Julliard
parent 76eed7d313
commit 753ecebe9b
1 changed files with 2 additions and 2 deletions

View File

@ -1051,9 +1051,9 @@ static nsresult NSAPI nsChannel_GetRequestHeader(nsIHttpChannel *iface,
{
nsChannel *This = NSCHANNEL_THIS(iface);
FIXME("(%p)->(%s %p)\n", This, debugstr_nsacstr(aHeader), _retval);
TRACE("(%p)->(%s %p)\n", This, debugstr_nsacstr(aHeader), _retval);
return NS_ERROR_NOT_IMPLEMENTED;
return get_channel_http_header(&This->request_headers, aHeader, _retval);
}
static nsresult NSAPI nsChannel_SetRequestHeader(nsIHttpChannel *iface,