From: Jacek Caban Date: Tue, 3 Aug 2010 19:39:49 +0000 (+0200) Subject: mshtml: Added nsIChannel::GetRequestHeader implementation. X-Git-Tag: wine-1.3.1~365 X-Git-Url: http://git.etersoft.ru/projects/?a=commitdiff_plain;h=753ecebe9b74b30338add85b8c6f210d0889cb95;p=wine%2Feterwine.git mshtml: Added nsIChannel::GetRequestHeader implementation. --- diff --git a/dlls/mshtml/nsio.c b/dlls/mshtml/nsio.c index 09e125fb79..019bc6108b 100644 --- a/dlls/mshtml/nsio.c +++ b/dlls/mshtml/nsio.c @@ -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,