summaryrefslogtreecommitdiff
path: root/plugins/LotusNotify
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-11-19 18:38:56 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-11-19 18:38:56 +0000
commit3000e4130b54028e8b10040fda3d9fc6f7302959 (patch)
tree7b6f46f4452d524c4789362a42cb429020d98a54 /plugins/LotusNotify
parentd6e05cc3bca53565d9ca65377ab8b0b6190774b3 (diff)
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@6939 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/LotusNotify')
-rw-r--r--plugins/LotusNotify/src/LotusNotify.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/LotusNotify/src/LotusNotify.cpp b/plugins/LotusNotify/src/LotusNotify.cpp
index 29052842c6..c349d8243e 100644
--- a/plugins/LotusNotify/src/LotusNotify.cpp
+++ b/plugins/LotusNotify/src/LotusNotify.cpp
@@ -990,7 +990,6 @@ void LoadSettings()
if(!db_get(NULL, PLUGINNAME, "LNPassword", &dbv))
strncpy_s(settingPassword, _countof(settingPassword), dbv.pszVal, SIZEOF(settingPassword));
db_free(&dbv);
- CallService(MS_DB_CRYPT_DECODESTRING, sizeof(settingPassword), (LPARAM)settingPassword);
if(!db_get_s(NULL, PLUGINNAME, "LNCommand", &dbv, DBVT_ASCIIZ))
strncpy_s(settingCommand, _countof(settingCommand), dbv.pszVal, SIZEOF(settingCommand));
db_free(&dbv);
@@ -1271,9 +1270,7 @@ INT_PTR CALLBACK DlgProcLotusNotifyOpts(HWND hwndDlg, UINT msg, WPARAM wParam, L
GetDlgItemTextA(hwndDlg, IDC_SERVER, settingServer, sizeof(settingServer));
db_set_s(NULL, PLUGINNAME, "LNServer", settingServer );
db_set_s(NULL, PLUGINNAME, "LNServerSec", settingServerSec);
- CallService(MS_DB_CRYPT_ENCODESTRING, sizeof(settingPassword), (LPARAM) settingPassword);
db_set_s(NULL, PLUGINNAME, "LNPassword", settingPassword);
- CallService(MS_DB_CRYPT_DECODESTRING, sizeof(settingPassword), (LPARAM) settingPassword);
db_set_s(NULL, PLUGINNAME, "LNDatabase", settingDatabase);
db_set_dw (NULL, PLUGINNAME, "LNInterval", settingInterval);
db_set_dw (NULL, PLUGINNAME, "LNInterval1", settingInterval1);