diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2012-07-19 00:43:46 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2012-07-19 00:43:46 +0000 |
commit | 62d4aa61927c9d7402410e989b8a454161069f34 (patch) | |
tree | a5f382f3f675e211ac6a3a282016cd8e67696942 /metacontacts/meta_main.c | |
parent | e89fe281f2589d9bc562b8f59efba3680d497137 (diff) |
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@603 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'metacontacts/meta_main.c')
-rw-r--r-- | metacontacts/meta_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/metacontacts/meta_main.c b/metacontacts/meta_main.c index 7554992..2e302c3 100644 --- a/metacontacts/meta_main.c +++ b/metacontacts/meta_main.c @@ -187,7 +187,7 @@ int __declspec(dllexport)Load(PLUGINLINK *link) //proto = (char *)CallService(MS_PROTO_GETCONTACTBASEPROTO, (WPARAM)hContact, 0);
if(!DBGetContactSetting(hContact, "Protocol", "p", &dbv)) {
proto = dbv.pszVal;
- if (proto && !lstrcmp( META_PROTO, proto)) {
+ if (proto && !strcmp( META_PROTO, proto)) {
DBWriteContactSettingWord(hContact, META_PROTO, "Status", ID_STATUS_OFFLINE);
DBWriteContactSettingDword(hContact, META_PROTO, "IdleTS", 0);
DBWriteContactSettingByte(hContact, META_PROTO, "ContactCountCheck", 0);
|