diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-22 12:56:56 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-22 12:56:56 +0000 |
commit | 2136c7efff71099e8ad1fc2196cd973f2316bc03 (patch) | |
tree | 8633b70fe927baaa614febcfe670303070ffcf6b /plugins/Clist_modern/src/modern_clc.cpp | |
parent | 7cfd634814762a3cd8a22fce9a4ec6d47bb8f536 (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.cpp | 2 |
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); |