From 91003eb7373b4cb9e340be5ecdbbb7884a5e973f Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 6 Oct 2013 12:58:08 +0000 Subject: code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@6372 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Watrack_MPD/src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/Watrack_MPD/src/main.cpp') diff --git a/plugins/Watrack_MPD/src/main.cpp b/plugins/Watrack_MPD/src/main.cpp index 55888e4caa..dd9a9feea0 100755 --- a/plugins/Watrack_MPD/src/main.cpp +++ b/plugins/Watrack_MPD/src/main.cpp @@ -24,14 +24,14 @@ SONGINFO SongInfo = {0}; void Start(void* param) { - NETLIBOPENCONNECTION nloc = {0}; + NETLIBOPENCONNECTION nloc = { sizeof(nloc) }; char *tmp = (char*)mir_u2a(gbHost); - nloc.cbSize = sizeof(nloc); nloc.szHost = tmp; nloc.timeout = 5; + nloc.flags = NLOCF_V2; nloc.wPort = gbPort; Connected = FALSE; - ghConnection = NetLib_CreateConnection(ghNetlibUser, &nloc); + ghConnection = (HANDLE)CallService(MS_NETLIB_OPENCONNECTION, (WPARAM)ghNetlibUser, (LPARAM)&nloc); if(ghConnection) ghPacketReciever = (HANDLE)CallService(MS_NETLIB_CREATEPACKETRECVER,(WPARAM)ghConnection,2048); } -- cgit v1.2.3