diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-03 12:19:42 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-03 12:19:42 +0000 |
commit | 23617c95e41dc21347d4957c29fe5989a36e2a85 (patch) | |
tree | 3a88d117557a7dd5f04863e82966225037c21853 /plugins/Db3x_mmap/src/ui.cpp | |
parent | 6064262200ecd2cead6f706765e3049f559cfcd0 (diff) |
more correct way of writing signatures
git-svn-id: http://svn.miranda-ng.org/main/trunk@7477 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Db3x_mmap/src/ui.cpp')
-rw-r--r-- | plugins/Db3x_mmap/src/ui.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/Db3x_mmap/src/ui.cpp b/plugins/Db3x_mmap/src/ui.cpp index 902791c1b2..a8fa3f787a 100644 --- a/plugins/Db3x_mmap/src/ui.cpp +++ b/plugins/Db3x_mmap/src/ui.cpp @@ -192,6 +192,7 @@ LBL_Error: SetDlgItemTextA(hwndDlg, IDC_USERPASS2, "");
}
else {
+ param->db->WriteSignature(dbSignatureU);
param->db->SetPassword(NULL);
param->db->StoreKey();
EndDialog(hwndDlg, IDREMOVE);
@@ -215,6 +216,7 @@ LBL_Error: if (!CheckOldPassword(hwndDlg, param->db))
goto LBL_Error;
+ param->db->WriteSignature(dbSignatureE);
param->db->SetPassword(buf2);
param->db->StoreKey();
SecureZeroMemory(buf2, sizeof(buf2));
|