Commit f69445ad authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

winhttp: Trace accept types in WinHttpOpenRequest.

parent f6980025
...@@ -917,6 +917,14 @@ HINTERNET WINAPI WinHttpOpenRequest( HINTERNET hconnect, LPCWSTR verb, LPCWSTR o ...@@ -917,6 +917,14 @@ HINTERNET WINAPI WinHttpOpenRequest( HINTERNET hconnect, LPCWSTR verb, LPCWSTR o
TRACE("%p, %s, %s, %s, %s, %p, 0x%08x\n", hconnect, debugstr_w(verb), debugstr_w(object), TRACE("%p, %s, %s, %s, %s, %p, 0x%08x\n", hconnect, debugstr_w(verb), debugstr_w(object),
debugstr_w(version), debugstr_w(referrer), types, flags); debugstr_w(version), debugstr_w(referrer), types, flags);
if(types && TRACE_ON(winhttp)) {
const WCHAR **iter;
TRACE("accept types:\n");
for(iter = types; *iter; iter++)
TRACE(" %s\n", debugstr_w(*iter));
}
if (!(connect = (connect_t *)grab_object( hconnect ))) if (!(connect = (connect_t *)grab_object( hconnect )))
{ {
set_last_error( ERROR_INVALID_HANDLE ); set_last_error( ERROR_INVALID_HANDLE );
......
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