diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-08-25 11:42:01 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-09-16 01:33:11 +0200 |
commit | 4d7dc3ba25f562bea4be8898f11a97e911c48b99 (patch) | |
tree | 3a88d9a447e86a66017c145949e30406bdbf556c /src/Mount/Mount.c | |
parent | 85c1bc34e39a5e7682778c53ce68d6768346999c (diff) | |
download | VeraCrypt-4d7dc3ba25f562bea4be8898f11a97e911c48b99.tar.gz VeraCrypt-4d7dc3ba25f562bea4be8898f11a97e911c48b99.zip |
Windows: first implementation of CLI support for creating volumes.
Diffstat (limited to 'src/Mount/Mount.c')
-rw-r--r-- | src/Mount/Mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mount/Mount.c b/src/Mount/Mount.c index e67c9018..834ed198 100644 --- a/src/Mount/Mount.c +++ b/src/Mount/Mount.c @@ -2457,7 +2457,7 @@ BOOL CALLBACK PasswordChangeDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPAR else if (!(newKeyFilesParam.EnableKeyFiles && newKeyFilesParam.FirstKeyFile != NULL)
&& pwdChangeDlgMode == PCDM_CHANGE_PASSWORD)
{
- if (!CheckPasswordLength (hwndDlg, GetWindowTextLength(GetDlgItem (hwndDlg, IDC_PASSWORD)), pim, bSysEncPwdChangeDlgMode, FALSE))
+ if (!CheckPasswordLength (hwndDlg, GetWindowTextLength(GetDlgItem (hwndDlg, IDC_PASSWORD)), pim, bSysEncPwdChangeDlgMode, FALSE, FALSE))
return 1;
}
|