diff options
| author | Jackson Palmer <[email protected]> | 2014-01-26 19:33:23 +1100 |
|---|---|---|
| committer | Jackson Palmer <[email protected]> | 2014-01-26 19:33:23 +1100 |
| commit | 9a4b221f09c0983f50338fe64bcd76edab317b16 (patch) | |
| tree | a684547a57aa959deaddd28504b20bdc3672682f /src | |
| parent | Merge pull request #92 from orezpraw/rpc (diff) | |
| download | discoin-9a4b221f09c0983f50338fe64bcd76edab317b16.tar.xz discoin-9a4b221f09c0983f50338fe64bcd76edab317b16.zip | |
RPC security tweaks
Diffstat (limited to 'src')
| -rw-r--r-- | src/bitcoinrpc.cpp | 3 |
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" |