Commit 3649d018 authored by Stephen Hemminger's avatar Stephen Hemminger

l2tp: add missing newline on show output

After cookie there was no newline.
parent 4fcfb6bc
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment