aboutsummaryrefslogtreecommitdiff
path: root/src/bitcoind.cpp
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2016-02-03 05:38:27 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2016-02-03 05:38:51 +0000
commit027fdb83b41ae9e9125cf61f6460c03ab34e5961 (patch)
tree4f7ac912c5344c1361cda2046e453e5b69f344fc /src/bitcoind.cpp
parentcc2095ecae3f4ff57d3981b5992e032e564ba65d (diff)
downloadbitcoin-027fdb83b41ae9e9125cf61f6460c03ab34e5961.tar.xz
When/if the copyright line does not mention Bitcoin Core developers, add a second line to copyrights in -version, About dialog, and splash screen
Diffstat (limited to 'src/bitcoind.cpp')
-rw-r--r--src/bitcoind.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp
index 440356aa80..9ad5a47869 100644
--- a/src/bitcoind.cpp
+++ b/src/bitcoind.cpp
@@ -17,6 +17,7 @@
#include "httpserver.h"
#include "httprpc.h"
#include "rpcserver.h"
+#include "utilstrencodings.h"
#include <boost/algorithm/string/predicate.hpp>
#include <boost/filesystem.hpp>
@@ -82,7 +83,7 @@ bool AppInit(int argc, char* argv[])
if (mapArgs.count("-version"))
{
- strUsage += LicenseInfo();
+ strUsage += FormatParagraph(LicenseInfo());
}
else
{