From: Sven-Haegar Koch Date: Fri, 12 Oct 2012 15:08:01 +0000 (+0200) Subject: sptps.c: Add missing newline to log message. X-Git-Tag: release-1.1pre3~9 X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=ec1f7e525d046bcaeb8e7040b8cec9a34a568371 sptps.c: Add missing newline to log message. --- diff --git a/src/sptps.c b/src/sptps.c index 2a298ffa..78001400 100644 --- a/src/sptps.c +++ b/src/sptps.c @@ -436,7 +436,7 @@ static bool sptps_receive_data_datagram(sptps_t *s, const char *data, size_t len } else if (seqno < s->inseqno) { // If the sequence number is farther in the past than the bitmap goes, or if the packet was already received, drop it. if((s->inseqno >= s->replaywin * 8 && seqno < s->inseqno - s->replaywin * 8) || !(s->late[(seqno / 8) % s->replaywin] & (1 << seqno % 8))) { - fprintf(stderr, "Received late or replayed packet, seqno %d, last received %d", seqno, s->inseqno); + fprintf(stderr, "Received late or replayed packet, seqno %d, last received %d\n", seqno, s->inseqno); return false; } } else {