summaryrefslogtreecommitdiff
path: root/protocols/Steam
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2017-01-12 13:58:06 +0300
committerGeorge Hazan <ghazan@miranda.im>2017-01-12 13:58:06 +0300
commitc74c7fe3605d7426afb6b6436d4ebaa978f34c2f (patch)
tree7f7ca3a25ceeb9cb755a8660fa0fa9b87900ac13 /protocols/Steam
parentffbdd25f9aec76d7da5507810cd793193725ecfa (diff)
a fix for passing connection handles into Netlib_Logf
Diffstat (limited to 'protocols/Steam')
-rw-r--r--protocols/Steam/src/http_request.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Steam/src/http_request.h b/protocols/Steam/src/http_request.h
index 402185048d..fbbd7d3e84 100644
--- a/protocols/Steam/src/http_request.h
+++ b/protocols/Steam/src/http_request.h
@@ -144,7 +144,7 @@ public:
{
szUrl = m_url.GetBuffer();
- Netlib_Logf(NULL, "Send request to %s", szUrl);
+ Netlib_Logf(Netlib_GetConnNlu(hConnection), "Send request to %s", szUrl);
NETLIBHTTPREQUEST* response = (NETLIBHTTPREQUEST*)CallService(MS_NETLIB_HTTPTRANSACTION, (WPARAM)hConnection, (LPARAM)this);
HttpResponse* result = new HttpResponse(response, this);