l2tp: add missing newline on show output

After cookie there was no newline.
This commit is contained in:
Stephen Hemminger 2015-09-11 15:26:58 -07:00
parent 4fcfb6bc71
commit 3649d01895
1 changed files with 3 additions and 2 deletions

View File

@ -234,9 +234,10 @@ static void print_session(struct l2tp_data *data)
if (p->peer_cookie_len > 0)
print_cookie("peer cookie", p->peer_cookie, p->peer_cookie_len);
if (p->reorder_timeout != 0) {
if (p->reorder_timeout != 0)
printf(" reorder timeout: %u\n", p->reorder_timeout);
}
else
printf("\n");
}
static int get_response(struct nlmsghdr *n, void *arg)