diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-05-29 02:06:14 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-05-29 02:22:12 +0200 |
commit | 57343ce04c984c632599aa53b91846e6e09975ab (patch) | |
tree | 3387faea76baf9874f58ee06cd65695156549fbd /src | |
parent | fdc2143bfabb1e48ea0108fcf12c2e4ad438b44e (diff) | |
download | VeraCrypt-57343ce04c984c632599aa53b91846e6e09975ab.tar.gz VeraCrypt-57343ce04c984c632599aa53b91846e6e09975ab.zip |
Windows: reorder command line switched with alphabetical order for better help display
Diffstat (limited to 'src')
-rw-r--r-- | src/Mount/Mount.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Mount/Mount.c b/src/Mount/Mount.c index ef116199..df9ecb58 100644 --- a/src/Mount/Mount.c +++ b/src/Mount/Mount.c @@ -7487,20 +7487,20 @@ void ExtractCommandLine (HWND hwndDlg, char *lpszCommandLine) { CommandDismount, "/dismount", "/d", FALSE },
{ OptionExplore, "/explore", "/e", FALSE },
{ OptionForce, "/force", "/f", FALSE },
+ { OptionPkcs5, "/hash", NULL , FALSE },
{ CommandHelp, "/help", "/?", FALSE },
{ OptionHistory, "/history", "/h", FALSE },
{ OptionKeyfile, "/keyfile", "/k", FALSE },
{ OptionLetter, "/letter", "/l", FALSE },
{ OptionMountOption, "/mountoption", "/m", FALSE },
{ OptionPassword, "/password", "/p", FALSE },
+ { OptionPin, "/pin", NULL, FALSE },
{ OptionQuit, "/quit", "/q", FALSE },
{ OptionSilent, "/silent", "/s", FALSE },
{ OptionTokenLib, "/tokenlib", NULL, FALSE },
+ { OptionTrueCryptMode, "/truecrypt", "/tc", FALSE },
{ OptionVolume, "/volume", "/v", FALSE },
{ CommandWipeCache, "/wipecache", "/w", FALSE },
- { OptionPkcs5, "/hash", NULL , FALSE },
- { OptionTrueCryptMode, "/truecrypt", "/tc", FALSE },
- { OptionPin, "/pin", NULL, FALSE },
};
argumentspec as;
|