aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorPatrick Lodder <[email protected]>2015-08-30 18:48:53 +0200
committerPatrick Lodder <[email protected]>2015-08-30 18:48:53 +0200
commit337bc990e82a7b4d6304900c891c0193006f8519 (patch)
treeea8a35feca417986950e03056d28719d0564fa34 /src/net.cpp
parentMerge pull request #1269 from langerhans/1.10-dev-nodebloom (diff)
parentCorrected missing new lines in error messages (diff)
downloaddiscoin-337bc990e82a7b4d6304900c891c0193006f8519.tar.xz
discoin-337bc990e82a7b4d6304900c891c0193006f8519.zip
Merge pull request #1274 from rnicoll/1.10-missing-newline
Corrected missing new lines in error messages
Diffstat (limited to 'src/net.cpp')
-rw-r--r--src/net.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp
index 3908be682..ce5cd29de 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -548,7 +548,7 @@ bool CNode::ReceiveMsgBytes(const char *pch, unsigned int nBytes)
return false;
if (msg.in_data && msg.hdr.nMessageSize > MAX_PROTOCOL_MESSAGE_LENGTH) {
- LogPrint("net", "Oversized message from peer=%i, disconnecting", GetId());
+ LogPrint("net", "Oversized message from peer=%i, disconnecting\n", GetId());
return false;
}