diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-22 14:21:20 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-22 14:21:20 +0000 |
commit | f8e34b5f83f3ce5f39d541e9068b6b8cb6d92acd (patch) | |
tree | 0efec50fdc94ea75743a732299ae4a3304594557 /plugins/Clist_modern/src/modern_clc.cpp | |
parent | bd5d777d5d7de22817b7bd868e3b3281d6fdcb49 (diff) |
right replacement for mir_stricmp
git-svn-id: http://svn.miranda-ng.org/main/trunk@13757 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 2f3b1c2db9..a031919d39 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_strcmpi(val, "")) + if (mir_strcmpi(val, "")) db_set_s(ack->hContact, "CList", "StatusMsg", ""); else gtaRenewText(ack->hContact); |