summaryrefslogtreecommitdiffstats
path: root/proto/ospf/neighbor.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2001-08-19 13:15:24 +0200
committerMartin Mares <mj@ucw.cz>2001-08-19 13:15:24 +0200
commite43ae6330eaf349eafe6820465c85266eef80e07 (patch)
treeac2a601c21c65238331783593fa2774d29910700 /proto/ospf/neighbor.c
parent30b773041c37d10649a16d5f28af00a25871aac7 (diff)
downloadbird-e43ae6330eaf349eafe6820465c85266eef80e07.tar
bird-e43ae6330eaf349eafe6820465c85266eef80e07.zip
Fix %<something>I format strings.
Diffstat (limited to 'proto/ospf/neighbor.c')
-rw-r--r--proto/ospf/neighbor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/neighbor.c b/proto/ospf/neighbor.c
index cbb3e5e..52a94db 100644
--- a/proto/ospf/neighbor.c
+++ b/proto/ospf/neighbor.c
@@ -545,6 +545,6 @@ ospf_sh_neigh_info(struct ospf_neighbor *n)
if(n->rid==ifa->bdrid) pos="bdr ";
if(n->ifa->type==OSPF_IT_PTP) pos="ptp ";
- cli_msg(-1013,"%-18I\t%3u\t%s/%s\t%-5s\t%-18I\t%-10s",n->rid, n->priority,
+ cli_msg(-1013,"%-1I\t%3u\t%s/%s\t%-5s\t%-1I\t%-10s",n->rid, n->priority,
ospf_ns[n->state], pos, etime, n->ip,ifa->iface->name);
}