summaryrefslogtreecommitdiff
path: root/src/modules/clist/contact.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/clist/contact.cpp')
-rw-r--r--src/modules/clist/contact.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/clist/contact.cpp b/src/modules/clist/contact.cpp
index c25e997f4a..59426dbbb9 100644
--- a/src/modules/clist/contact.cpp
+++ b/src/modules/clist/contact.cpp
@@ -105,7 +105,7 @@ int fnCompareContacts(const ClcContact* c1, const ClcContact* c2)
}
/* both are online, now check protocols */
if (c1->proto != NULL && c2->proto != NULL) {
- rc = lstrcmpA(c1->proto, c2->proto);
+ rc = mir_strcmp(c1->proto, c2->proto);
if (rc != 0)
return rc;
}