diff options
Diffstat (limited to 'protocols/JabberG/src/jabber_chat.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_chat.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/JabberG/src/jabber_chat.cpp b/protocols/JabberG/src/jabber_chat.cpp index 4ac1cf5967..a4aa2d292d 100644 --- a/protocols/JabberG/src/jabber_chat.cpp +++ b/protocols/JabberG/src/jabber_chat.cpp @@ -153,12 +153,12 @@ int CJabberProto::GcInit(JABBER_LIST_ITEM *item) }
else setTString(hContact, "MyNick", item->nick);
- ptrT passw( JGetStringCrypt(hContact, "LoginPassword"));
+ ptrT passw( getTStringA(hContact, "Password"));
if (lstrcmp_null(passw, item->password)) {
if ( !item->password || !item->password[0])
- delSetting(hContact, "LoginPassword");
+ delSetting(hContact, "Password");
else
- JSetStringCrypt(hContact, "LoginPassword", item->password);
+ setTString(hContact, "Password", item->password);
}
}
mir_free(szNick);
|