summaryrefslogtreecommitdiffstats
path: root/usr.sbin/dvmrpctl
diff options
context:
space:
mode:
authormichele <michele@openbsd.org>2009-01-24 16:23:52 +0000
committermichele <michele@openbsd.org>2009-01-24 16:23:52 +0000
commitb39d1d57e97a922b2e15936f1fef3ac2890038c4 (patch)
tree741d9d9421c9f047d479a441ba2521d7d90215ef /usr.sbin/dvmrpctl
parentimprove indentation without wasting space on the install media; (diff)
downloadwireguard-openbsd-b39d1d57e97a922b2e15936f1fef3ac2890038c4.tar.xz
wireguard-openbsd-b39d1d57e97a922b2e15936f1fef3ac2890038c4.zip
Reflect dvmrpd changes, nbr_cnt is no more needed.
ok norby@
Diffstat (limited to 'usr.sbin/dvmrpctl')
-rw-r--r--usr.sbin/dvmrpctl/dvmrpctl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/dvmrpctl/dvmrpctl.c b/usr.sbin/dvmrpctl/dvmrpctl.c
index 2fd677bfd08..ae1a0ab13aa 100644
--- a/usr.sbin/dvmrpctl/dvmrpctl.c
+++ b/usr.sbin/dvmrpctl/dvmrpctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dvmrpctl.c,v 1.5 2008/12/31 14:10:20 sobrado Exp $ */
+/* $OpenBSD: dvmrpctl.c,v 1.6 2009/01/24 16:23:52 michele Exp $ */
/*
* Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org>
@@ -337,8 +337,8 @@ show_interface_detail_msg(struct imsg *imsg)
fmt_timeframe_core(iface->probe_timer));
printf(" Uptime %s\n", iface->uptime == 0 ?
"00:00:00" : fmt_timeframe_core(iface->uptime));
- printf(" Neighbor count is %d, adjacent neighbor count is "
- "%d\n", iface->nbr_cnt, iface->adj_cnt);
+ printf(" Adjacent neighbor count is "
+ "%d\n", iface->adj_cnt);
break;
case IMSG_CTL_END:
printf("\n");