aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2013-10-01 04:14:54 -0700
committerWladimir J. van der Laan <laanwj@gmail.com>2013-10-01 04:14:54 -0700
commitb85560a1b569547b1a06998d54ff16573a0076bd (patch)
tree6703357cf852912ab8e757493e589f4c1a1880f6
parentbb3319f296c05b986634ebcdc79727c7a0bb5977 (diff)
parentf65dddc7b28e3cc8d660b3a7cf336b27c18b1ce7 (diff)
downloadbitcoin-b85560a1b569547b1a06998d54ff16573a0076bd.tar.xz
Merge pull request #3045 from Diapolo/master
misc small spelling/indentation fixes
-rw-r--r--src/bitcoinrpc.cpp4
-rw-r--r--src/init.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp
index f9e0c476f6..ce8ff71a26 100644
--- a/src/bitcoinrpc.cpp
+++ b/src/bitcoinrpc.cpp
@@ -1007,8 +1007,8 @@ void ServiceConnection(AcceptedConnection *conn)
{
LogPrintf("ThreadRPCServer incorrect password attempt from %s\n", conn->peer_address_to_string().c_str());
/* Deter brute-forcing short passwords.
- If this results in a DOS the user really
- shouldn't have their RPC port exposed.*/
+ If this results in a DoS the user really
+ shouldn't have their RPC port exposed. */
if (mapArgs["-rpcpassword"].size() < 20)
MilliSleep(250);
diff --git a/src/init.cpp b/src/init.cpp
index fb03e7b663..d8d1a55fc9 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -339,8 +339,8 @@ bool AppInit2(boost::thread_group& threadGroup)
// Minimum supported OS versions: WinXP SP3, WinVista >= SP1, Win Server 2008
// A failure is non-critical and needs no further attention!
#ifndef PROCESS_DEP_ENABLE
-// We define this here, because GCCs winbase.h limits this to _WIN32_WINNT >= 0x0601 (Windows 7),
-// which is not correct. Can be removed, when GCCs winbase.h is fixed!
+ // We define this here, because GCCs winbase.h limits this to _WIN32_WINNT >= 0x0601 (Windows 7),
+ // which is not correct. Can be removed, when GCCs winbase.h is fixed!
#define PROCESS_DEP_ENABLE 0x00000001
#endif
typedef BOOL (WINAPI *PSETPROCDEPPOL)(DWORD);