Jacek Caban : mshtml: Added nsIChannel::GetRequestHeader implementation.

Alexandre Julliard julliard at winehq.org
Wed Aug 4 12:27:22 CDT 2010


Module: wine
Branch: master
Commit: 753ecebe9b74b30338add85b8c6f210d0889cb95
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=753ecebe9b74b30338add85b8c6f210d0889cb95

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Tue Aug  3 21:39:49 2010 +0200

mshtml: Added nsIChannel::GetRequestHeader implementation.

---

 dlls/mshtml/nsio.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/mshtml/nsio.c b/dlls/mshtml/nsio.c
index 09e125f..019bc61 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,




More information about the wine-cvs mailing list