diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-07-14 15:45:21 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-07-14 15:47:38 +0200 |
commit | 88ef238593f256b7fffb34b494c334dbc11e4116 (patch) | |
tree | 2da0cba98620c9d5cb024405c158ac3588c9fd41 /src | |
parent | 046513b7c95d7f7a8be764216538d06d7c6b0d40 (diff) | |
download | VeraCrypt-88ef238593f256b7fffb34b494c334dbc11e4116.tar.gz VeraCrypt-88ef238593f256b7fffb34b494c334dbc11e4116.zip |
Windows: in encryption wizard, clicking "Previous" in the "Large File Support" page should take to password page if PIM not enabled.
Diffstat (limited to 'src')
-rw-r--r-- | src/Format/Tcformat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Format/Tcformat.c b/src/Format/Tcformat.c index be4919ab..ae9d7702 100644 --- a/src/Format/Tcformat.c +++ b/src/Format/Tcformat.c @@ -8304,6 +8304,8 @@ ovf_end: fileSystem = FILESYS_NONE; // The user may have gone back and changed the answer, so default file system must be reselected
nNeedToStoreFilesOver4GB = Get2RadButtonPageAnswer();
+
+ nNewPageNo = (PimEnable? PIM_PAGE : PASSWORD_PAGE) + 1; // Skip PIM page if it is not enabled
}
else if (nCurPageNo == PASSWORD_PAGE)
|