From 28c30ab287d4eb338b83113a0f6d27081cd72785 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 22 Jul 2014 14:55:04 +0000 Subject: no, unique settings are not always strings... (ICQ suxx & must die) git-svn-id: http://svn.miranda-ng.org/main/trunk@9921 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/modules/metacontacts/meta_utils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/metacontacts/meta_utils.cpp b/src/modules/metacontacts/meta_utils.cpp index 48f3ad0105..c1bd9551d7 100644 --- a/src/modules/metacontacts/meta_utils.cpp +++ b/src/modules/metacontacts/meta_utils.cpp @@ -495,8 +495,8 @@ static void SwapValues(MCONTACT hContact, LPCSTR szSetting, int n1, int n2) mir_snprintf(buf2, sizeof(buf2), "%s%d", szSetting, n2); DBVARIANT dbv1, dbv2; - int ok1 = !db_get_s(hContact, META_PROTO, buf1, &dbv1, 0); - int ok2 = !db_get_s(hContact, META_PROTO, buf2, &dbv2, 0); + int ok1 = !db_get(hContact, META_PROTO, buf1, &dbv1); + int ok2 = !db_get(hContact, META_PROTO, buf2, &dbv2); if (ok1) { db_set(hContact, META_PROTO, buf2, &dbv1); db_free(&dbv1); -- cgit v1.2.3