|
1 | 1 | // Copyright (c) 2009-2010 Satoshi Nakamoto
|
2 |
| -// Copyright (c) 2009-2018 The Bitcoin Core developers |
| 2 | +// Copyright (c) 2009-2019 The Bitcoin Core developers |
3 | 3 | // Distributed under the MIT software license, see the accompanying
|
4 | 4 | // file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
5 | 5 |
|
@@ -77,15 +77,15 @@ static bool AppInit(int argc, char* argv[])
|
77 | 77 |
|
78 | 78 | // Process help and version before taking care about datadir
|
79 | 79 | if (HelpRequested(gArgs) || gArgs.IsArgSet("-version")) {
|
80 |
| - std::string strUsage = PACKAGE_NAME " Daemon version " + FormatFullVersion() + "\n"; |
| 80 | + std::string strUsage = PACKAGE_NAME " version " + FormatFullVersion() + "\n"; |
81 | 81 |
|
82 | 82 | if (gArgs.IsArgSet("-version"))
|
83 | 83 | {
|
84 | 84 | strUsage += FormatParagraph(LicenseInfo()) + "\n";
|
85 | 85 | }
|
86 | 86 | else
|
87 | 87 | {
|
88 |
| - strUsage += "\nUsage: bitcoind [options] Start " PACKAGE_NAME " Daemon\n"; |
| 88 | + strUsage += "\nUsage: bitcoind [options] Start " PACKAGE_NAME "\n"; |
89 | 89 | strUsage += "\n" + gArgs.GetHelpMessage();
|
90 | 90 | }
|
91 | 91 |
|
@@ -142,7 +142,7 @@ static bool AppInit(int argc, char* argv[])
|
142 | 142 | #pragma GCC diagnostic push
|
143 | 143 | #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
144 | 144 | #endif
|
145 |
| - tfm::format(std::cout, PACKAGE_NAME " daemon starting\n"); |
| 145 | + tfm::format(std::cout, PACKAGE_NAME " starting\n"); |
146 | 146 |
|
147 | 147 | // Daemonize
|
148 | 148 | if (daemon(1, 0)) { // don't chdir (1), do close FDs (0)
|
|
0 commit comments