diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-22 18:37:53 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-22 18:37:53 +0000 |
commit | e2d7ebd6315a810bd4ea54f1088b84d09c3ca5d2 (patch) | |
tree | 736bb8768f17b26904cdf8e0fe6fb47e1dcb892e /protocols/Tlen/src | |
parent | a882eddcba5fd22adab1454c8d2ff9c224bc7aa7 (diff) |
replace stricmp to mir_strcmpi
git-svn-id: http://svn.miranda-ng.org/main/trunk@13760 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tlen/src')
-rw-r--r-- | protocols/Tlen/src/tlen_misc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Tlen/src/tlen_misc.cpp b/protocols/Tlen/src/tlen_misc.cpp index e3b4fe6c1e..f55d025959 100644 --- a/protocols/Tlen/src/tlen_misc.cpp +++ b/protocols/Tlen/src/tlen_misc.cpp @@ -95,7 +95,7 @@ MCONTACT TlenHContactFromJID(TlenProtocol *proto, const char *jid) continue;
if ((p=dbv.pszVal) != NULL) {
- if (!stricmp(p, jid)) { // exact match (node@domain/resource)
+ if (!mir_strcmpi(p, jid)) { // exact match (node@domain/resource)
db_free(&dbv);
return hContact;
}
|