diff options
author | 2004-09-23 02:05:29 +0000 | |
---|---|---|
committer | 2004-09-23 02:05:29 +0000 | |
commit | deda32262b0052163cf53b3a0b4b92b021d65107 (patch) | |
tree | d48cc7e25cdaf34c2ea4a173dd6ba636c617f2e6 | |
parent | after receival of a SIGCHLD reset io_pid or rde_pid, respectively, dependent (diff) | |
download | wireguard-openbsd-deda32262b0052163cf53b3a0b4b92b021d65107.tar.xz wireguard-openbsd-deda32262b0052163cf53b3a0b4b92b021d65107.zip |
cosmetics
-rw-r--r-- | usr.sbin/bgpctl/bgpctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpctl/bgpctl.c b/usr.sbin/bgpctl/bgpctl.c index 660f83d09b9..3f94f84625c 100644 --- a/usr.sbin/bgpctl/bgpctl.c +++ b/usr.sbin/bgpctl/bgpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpctl.c,v 1.64 2004/09/21 18:29:47 claudio Exp $ */ +/* $OpenBSD: bgpctl.c,v 1.65 2004/09/23 02:05:29 henning Exp $ */ /* * Copyright (c) 2003 Henning Brauer <henning@openbsd.org> @@ -328,7 +328,7 @@ show_summary_msg(struct imsg *imsg) if (p->state == STATE_ESTABLISHED) { printf("%6u", p->stats.prefix_cnt); if (p->conf.max_prefix != 0) - printf("/%u", p->conf.max_prefix); + printf("/%6u", p->conf.max_prefix); } else printf("%s", statenames[p->state]); printf("\n"); |