diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2025-02-02 23:37:36 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2025-02-02 23:37:36 +0100 |
commit | c69ba240c4273889d3e4638d93d0e7ca70e85089 (patch) | |
tree | a0c210ad0e4c3893af73f29db55317e62fb4a03b /src/Common | |
parent | bdbd95a51b8cd294e31643ba9be4ea1f02b5f9aa (diff) | |
download | VeraCrypt-c69ba240c4273889d3e4638d93d0e7ca70e85089.tar.gz VeraCrypt-c69ba240c4273889d3e4638d93d0e7ca70e85089.zip |
Complete replacement of Dismount references by Unmount in various files
Diffstat (limited to 'src/Common')
-rw-r--r-- | src/Common/Cmdline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/Cmdline.c b/src/Common/Cmdline.c index e0e6f356..ff19b76a 100644 --- a/src/Common/Cmdline.c +++ b/src/Common/Cmdline.c @@ -61,17 +61,17 @@ BOOL CALLBACK CommandHelpDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM { if (!as->args[i].Internal) { StringCchPrintfW(tmp2, MAX_PATH * 2, L"%s\t%s\n", as->args[i].short_name, as->args[i].long_name); StringCchCatW(tmp, 8192, tmp2); } } #if defined(TCMOUNT) && !defined(VCEXPANDER) - StringCchCatW (tmp, 8192, L"\nExamples:\n\nMount a volume as X:\tveracrypt.exe /q /v volume.hc /l X\nDismount a volume X:\tveracrypt.exe /q /d X"); + StringCchCatW (tmp, 8192, L"\nExamples:\n\nMount a volume as X:\tveracrypt.exe /q /v volume.hc /l X\nUnmount a volume X:\tveracrypt.exe /q /u X"); #endif SetWindowTextW (GetDlgItem (hwndDlg, IDC_COMMANDHELP_TEXT), tmp); TCfree(tmp); return 1; } case WM_COMMAND: |