From e530b1be3a65296d2324b2299897367ee14d4a3d Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Wed, 12 Aug 2015 18:56:09 +0000 Subject: Tox: contact status message support git-svn-id: http://svn.miranda-ng.org/main/trunk@14926 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Tox/src/tox_contacts.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'protocols/Tox/src/tox_contacts.cpp') diff --git a/protocols/Tox/src/tox_contacts.cpp b/protocols/Tox/src/tox_contacts.cpp index 7540961bae..7ce9442134 100644 --- a/protocols/Tox/src/tox_contacts.cpp +++ b/protocols/Tox/src/tox_contacts.cpp @@ -57,7 +57,7 @@ MCONTACT CToxProto::GetContact(const char *pubKey) { ptrA contactPubKey(getStringA(hContact, TOX_SETTINGS_ID)); // check only public key part of address - if (strnicmp(pubKey, contactPubKey, TOX_PUBLIC_KEY_SIZE) == 0) + if (mir_strncmpi(pubKey, contactPubKey, TOX_PUBLIC_KEY_SIZE) == 0) break; } return hContact; -- cgit v1.2.3