Merge pull request #6846

3cb56f3 *: alias -h for --help (Daniel Cousens)
This commit is contained in:
Wladimir J. van der Laan
2015-10-22 17:51:13 +02:00
4 changed files with 4 additions and 4 deletions

View File

@@ -72,7 +72,7 @@ bool AppInit(int argc, char* argv[])
ParseParameters(argc, argv);
// Process help and version before taking care about datadir
if (mapArgs.count("-?") || mapArgs.count("-help") || mapArgs.count("-version"))
if (mapArgs.count("-?") || mapArgs.count("-h") || mapArgs.count("-help") || mapArgs.count("-version"))
{
std::string strUsage = _("Bitcoin Core Daemon") + " " + _("version") + " " + FormatFullVersion() + "\n";