diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-12-20 19:11:50 (GMT) |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-12-21 00:19:04 (GMT) |
commit | 8f6c08330ac37b7729d8c1bf7276e8fede2d17fa (patch) | |
tree | d395993fe27894fcc2436e7a8e7a35ab4040da00 /src/ExpandVolume | |
parent | 7832d712fda877001ea5ae825d1a07d424cb72b7 (diff) | |
download | VeraCrypt-8f6c08330ac37b7729d8c1bf7276e8fede2d17fa.zip VeraCrypt-8f6c08330ac37b7729d8c1bf7276e8fede2d17fa.tar.gz |
Windows: Implement PIM caching, both for system encryption and for normal volumes. Add options to activate it in the Preferences and System Settings.
Diffstat (limited to 'src/ExpandVolume')
-rw-r--r-- | src/ExpandVolume/ExpandVolume.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ExpandVolume/ExpandVolume.c b/src/ExpandVolume/ExpandVolume.c index e263e1f..8777c24 100644 --- a/src/ExpandVolume/ExpandVolume.c +++ b/src/ExpandVolume/ExpandVolume.c @@ -104,7 +104,7 @@ int MountVolTemp (HWND hwndDlg, wchar_t *volumePath, int *driveNo, Password *pas mountOptions.PartitionInInactiveSysEncScope = FALSE; mountOptions.UseBackupHeader = FALSE; - if (MountVolume (hwndDlg, *driveNo, volumePath, password, pkcs5, pim, FALSE, FALSE, TRUE, &mountOptions, FALSE, FALSE) < 1) + if (MountVolume (hwndDlg, *driveNo, volumePath, password, pkcs5, pim, FALSE, FALSE, FALSE, TRUE, &mountOptions, FALSE, FALSE) < 1) { *driveNo = -3; return ERR_VOL_MOUNT_FAILED; |