Add a newline when logging to stderr in the tinc binary.

This commit is contained in:
Guus Sliepen 2013-05-28 13:40:32 +02:00
parent c3d357af6c
commit cbe03b0932

View file

@ -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) {