aboutsummaryrefslogtreecommitdiff
path: root/src/rpcserver.cpp
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2015-04-28 14:47:17 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2015-05-02 15:23:59 +0000
commitb05a89b2def301704df8f22f05a45ccf891c2b83 (patch)
treeda028bc52de857c1a89fb223ae8973859b1cf150 /src/rpcserver.cpp
parent7e6d23b1719191f83af7d3e7b134a90889b5c1ef (diff)
downloadbitcoin-b05a89b2def301704df8f22f05a45ccf891c2b83.tar.xz
Non-grammatical language improvements
Diffstat (limited to 'src/rpcserver.cpp')
-rw-r--r--src/rpcserver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp
index 61dda9125b..12a5c4aef9 100644
--- a/src/rpcserver.cpp
+++ b/src/rpcserver.cpp
@@ -912,8 +912,8 @@ static bool HTTPReq_JSONRPC(AcceptedConnection *conn,
{
LogPrintf("ThreadRPCServer incorrect password attempt from %s\n", conn->peer_address_to_string());
/* Deter brute-forcing
- If this results in a DoS the user really
- shouldn't have their RPC port exposed. */
+ We don't support exposing the RPC port, so this shouldn't result
+ in a DoS. */
MilliSleep(250);
conn->stream() << HTTPError(HTTP_UNAUTHORIZED, false) << std::flush;