diff options
Diffstat (limited to 'networking/libiproute/iptunnel.c')
-rw-r--r-- | networking/libiproute/iptunnel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/libiproute/iptunnel.c b/networking/libiproute/iptunnel.c index 2b1713556..a936a4275 100644 --- a/networking/libiproute/iptunnel.c +++ b/networking/libiproute/iptunnel.c | |||
@@ -482,7 +482,7 @@ static void do_tunnels_list(struct ip_tunnel_parm *p) | |||
482 | (p->i_key && p1.i_key != p->i_key)) | 482 | (p->i_key && p1.i_key != p->i_key)) |
483 | continue; | 483 | continue; |
484 | print_tunnel(&p1); | 484 | print_tunnel(&p1); |
485 | puts(""); | 485 | bb_putchar('\n'); |
486 | } | 486 | } |
487 | } | 487 | } |
488 | 488 | ||
@@ -512,7 +512,7 @@ static int do_show(int argc, char **argv) | |||
512 | return -1; | 512 | return -1; |
513 | 513 | ||
514 | print_tunnel(&p); | 514 | print_tunnel(&p); |
515 | puts(""); | 515 | bb_putchar('\n'); |
516 | return 0; | 516 | return 0; |
517 | } | 517 | } |
518 | 518 | ||