Add a newline when logging to stderr in the tinc binary.
This commit is contained in:
parent
c3d357af6c
commit
cbe03b0932
1 changed files with 1 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue