Make sure LogPrint strings are line-terminated

This commit is contained in:
J Ross Nicoll 2015-08-29 17:40:13 +01:00
parent ea19c2bc3f
commit 9bebf60698
No known key found for this signature in database
GPG key ID: 9142E5F7E533CE3B

View file

@ -659,7 +659,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;
}