diff options
author | George Hazan <george.hazan@gmail.com> | 2013-11-19 21:44:15 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-11-19 21:44:15 +0000 |
commit | a90a4275934b9b3c5889b3fbf3fb312a83714ede (patch) | |
tree | d5df88983626f23a235dc4169c910a5480269b25 /protocols/JabberG/src/jabber_chat.cpp | |
parent | 60802648ddc84982418db8d8eb8ec40fa385a8ae (diff) |
password converter for Jabber
git-svn-id: http://svn.miranda-ng.org/main/trunk@6944 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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);
|