summaryrefslogtreecommitdiff
path: root/plugins/Clist_modern/src/modern_clc.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2015-05-22 12:56:56 +0000
committerKirill Volinsky <mataes2007@gmail.com>2015-05-22 12:56:56 +0000
commit2136c7efff71099e8ad1fc2196cd973f2316bc03 (patch)
tree8633b70fe927baaa614febcfe670303070ffcf6b /plugins/Clist_modern/src/modern_clc.cpp
parent7cfd634814762a3cd8a22fce9a4ec6d47bb8f536 (diff)
self strcmp function replaced by core function
git-svn-id: http://svn.miranda-ng.org/main/trunk@13755 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_clc.cpp')
-rw-r--r--plugins/Clist_modern/src/modern_clc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_modern/src/modern_clc.cpp b/plugins/Clist_modern/src/modern_clc.cpp
index 9683c423d9..2f3b1c2db9 100644
--- a/plugins/Clist_modern/src/modern_clc.cpp
+++ b/plugins/Clist_modern/src/modern_clc.cpp
@@ -1750,7 +1750,7 @@ int ClcDoProtoAck(MCONTACT, ACKDATA *ack)
if (ack->hContact) {
char *val = db_get_sa(ack->hContact, "CList", "StatusMsg");
if (val) {
- if (!mir_bool_strcmpi(val, ""))
+ if (!mir_strcmpi(val, ""))
db_set_s(ack->hContact, "CList", "StatusMsg", "");
else
gtaRenewText(ack->hContact);