mshtml: Added nsIChannel::GetRequestHeader implementation.
authorJacek Caban <jacek@codeweavers.com>
Tue, 3 Aug 2010 19:39:49 +0000 (21:39 +0200)
committerAlexandre Julliard <julliard@winehq.org>
Wed, 4 Aug 2010 10:24:53 +0000 (12:24 +0200)
dlls/mshtml/nsio.c

index 09e125fb79da0b45e745487adf1c8ab81e153ebb..019bc6108b16ca42f46f90ef53d38112a496da15 100644 (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,