diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2017-08-28 15:35:49 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2017-08-28 15:35:49 +0000 |
commit | aece61d7a64114fb297640f16bc2e80d85377b49 (patch) | |
tree | 5b156c251d58cd1f9a5ab1d44fcefff1d27c529c /usr.sbin/slaacctl | |
parent | 6d90813bf3d4336f3813c7363f43d43619132701 (diff) |
print id first to make this symetrical to address proposals
Diffstat (limited to 'usr.sbin/slaacctl')
-rw-r--r-- | usr.sbin/slaacctl/slaacctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/slaacctl/slaacctl.c b/usr.sbin/slaacctl/slaacctl.c index 43e16293faf..bfc50017394 100644 --- a/usr.sbin/slaacctl/slaacctl.c +++ b/usr.sbin/slaacctl/slaacctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: slaacctl.c,v 1.12 2017/08/22 13:56:49 florian Exp $ */ +/* $OpenBSD: slaacctl.c,v 1.13 2017/08/28 15:35:48 florian Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -306,9 +306,9 @@ show_interface_msg(struct imsg *imsg) NULL, 0, NI_NUMERICHOST | NI_NUMERICSERV)) err(1, "cannot get router IP"); - printf("\t\trouter: %s\n", hbuf); printf("\t\tid: %4lld, state: %15s\n", cei_dfr_proposal->id, cei_dfr_proposal->state); + printf("\t\trouter: %s\n", hbuf); printf("\t\trouter lifetime: %10u\n", cei_dfr_proposal->router_lifetime); printf("\t\tPreference: %s\n", cei_dfr_proposal->rpref); |