diff options
| author | Patrick Lodder <[email protected]> | 2015-08-30 18:48:53 +0200 |
|---|---|---|
| committer | Patrick Lodder <[email protected]> | 2015-08-30 18:48:53 +0200 |
| commit | 337bc990e82a7b4d6304900c891c0193006f8519 (patch) | |
| tree | ea8a35feca417986950e03056d28719d0564fa34 /src/net.cpp | |
| parent | Merge pull request #1269 from langerhans/1.10-dev-nodebloom (diff) | |
| parent | Corrected missing new lines in error messages (diff) | |
| download | discoin-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.cpp | 2 |
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; } |