From: claudio Date: Wed, 10 Aug 2022 10:21:47 +0000 (+0000) Subject: fixup header for bgpctl show network so it lines up again. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=1c48363b17e62c1cc5b2deb4666757c8d1a8ef79;p=openbsd fixup header for bgpctl show network so it lines up again. OK tb@ --- diff --git a/usr.sbin/bgpctl/output.c b/usr.sbin/bgpctl/output.c index c8a9ca0e276..cce1137197d 100644 --- a/usr.sbin/bgpctl/output.c +++ b/usr.sbin/bgpctl/output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: output.c,v 1.25 2022/07/28 10:40:25 claudio Exp $ */ +/* $OpenBSD: output.c,v 1.26 2022/08/10 10:21:47 claudio Exp $ */ /* * Copyright (c) 2003 Henning Brauer @@ -46,8 +46,7 @@ show_head(struct parse_result *res) break; case SHOW_FIB: printf("flags: B = BGP, C = Connected, S = Static\n"); - printf(" " - "N = BGP Nexthop reachable via this route\n"); + printf(" N = BGP Nexthop reachable via this route\n"); printf(" r = reject route, b = blackhole route\n\n"); printf("%-5s %-4s %-32s %-32s\n", "flags", "prio", "destination", "gateway"); @@ -83,7 +82,8 @@ show_head(struct parse_result *res) break; case NETWORK_SHOW: printf("flags: S = Static\n"); - printf("flags prio destination gateway\n"); + printf("%-5s %-4s %-32s %-32s\n", "flags", "prio", + "destination", "gateway"); break; default: break;