From cbe03b09324dcf930e9bec71a809c66e2d3d77d5 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Tue, 28 May 2013 13:40:32 +0200 Subject: [PATCH] Add a newline when logging to stderr in the tinc binary. --- src/info.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/info.c b/src/info.c index 8e91a227..d0db89a7 100644 --- a/src/info.c +++ b/src/info.c @@ -31,6 +31,7 @@ void logger(int level, int priority, const char *format, ...) { va_start(ap, format); vfprintf(stderr, format, ap); va_end(ap); + fputc('\n', stderr); } char *strip_weight(char *netstr) { -- 2.20.1