diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-15 18:46:53 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-15 18:46:53 +0000 |
commit | 66640fad9981ff3d73fc7069cd06b4e9a22b72b1 (patch) | |
tree | 64e19a3de30bbb17c9796bf1fc6d3e2d9e0a0a9a | |
parent | 58e70fe13318f7b555770a8786dc81fc28017f91 (diff) |
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@981 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/Dbx_mmap_SA/security.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dbx_mmap_SA/security.cpp b/plugins/Dbx_mmap_SA/security.cpp index bce6a55843..53eddc4816 100644 --- a/plugins/Dbx_mmap_SA/security.cpp +++ b/plugins/Dbx_mmap_SA/security.cpp @@ -307,7 +307,7 @@ void EncryptDB() action = DialogBoxParam(g_hInst, MAKEINTRESOURCE(IDD_NEWPASS), NULL, (DLGPROC)DlgStdNewPass, (LPARAM)NULL);
if(action != IDOK || !strlen(encryptKey)) {
bEncProcess = 0;
- DBWriteContactSettingByte(NULL, "SecureMMAP", "CryptoModule", 0);
+ db_set_b(NULL, "SecureMMAP", "CryptoModule", 0);
return;
}
|