aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJackson Palmer <[email protected]>2014-01-26 19:33:23 +1100
committerJackson Palmer <[email protected]>2014-01-26 19:33:23 +1100
commit9a4b221f09c0983f50338fe64bcd76edab317b16 (patch)
treea684547a57aa959deaddd28504b20bdc3672682f /src
parentMerge pull request #92 from orezpraw/rpc (diff)
downloaddiscoin-9a4b221f09c0983f50338fe64bcd76edab317b16.tar.xz
discoin-9a4b221f09c0983f50338fe64bcd76edab317b16.zip
RPC security tweaks
Diffstat (limited to 'src')
-rw-r--r--src/bitcoinrpc.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp
index ae1f9bf47..98fcd0e41 100644
--- a/src/bitcoinrpc.cpp
+++ b/src/bitcoinrpc.cpp
@@ -731,7 +731,6 @@ static void RPCAcceptHandler(boost::shared_ptr< basic_socket_acceptor<Protocol,
// Rough check of password strength based on 0-order entropy.
// Should work for both passwords and phrases without any complicated rules.
-// -- orezpraw, Jan 5, 2014
static int weakPassword(std::string passwd)
{
char i;
@@ -763,7 +762,7 @@ void StartRPCThreads()
else if (mapArgs.count("-daemon"))
strWhatAmI = strprintf(_("To use the %s option"), "\"-daemon\"");
uiInterface.ThreadSafeMessageBox(strprintf(
- _("%s, you must set a long rpcpassword in the configuration file:\n"
+ _("%s, you must set a secure rpcpassword in the configuration file:\n"
"%s\n"
"It is recommended you use the following random password:\n"
"rpcuser=dogecoinrpc\n"