summaryrefslogtreecommitdiffstats
path: root/proto/ospf
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
parent30b773041c37d10649a16d5f28af00a25871aac7 (diff)
downloadbird-e43ae6330eaf349eafe6820465c85266eef80e07.tar
bird-e43ae6330eaf349eafe6820465c85266eef80e07.zip
Fix %<something>I format strings.
Diffstat (limited to 'proto/ospf')
-rw-r--r--proto/ospf/dbdes.c2
-rw-r--r--proto/ospf/neighbor.c2
-rw-r--r--proto/ospf/ospf.c2
-rw-r--r--proto/ospf/topology.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/proto/ospf/dbdes.c b/proto/ospf/dbdes.c
index d6aadb6..05099b6 100644
--- a/proto/ospf/dbdes.c
+++ b/proto/ospf/dbdes.c
@@ -88,7 +88,7 @@ ospf_dbdes_tx(struct ospf_neighbor *n)
en=(struct top_hash_entry *)sn;
htonlsah(&(en->lsa), lsa);
DBG("Working on: %d\n", i);
- DBG("\tX%01x %08I %08I %p\n", en->lsa.type, en->lsa.id,
+ DBG("\tX%01x %-1I %-1I %p\n", en->lsa.type, en->lsa.id,
en->lsa.rt, en->lsa_body);
if(sn==STAIL(n->ifa->oa->lsal))
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);
}
diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c
index 23e668d..7f48f01 100644
--- a/proto/ospf/ospf.c
+++ b/proto/ospf/ospf.c
@@ -836,7 +836,7 @@ ospf_sh(struct proto *p)
cli_msg(-1014,"\t\tArea networks:");
WALK_LIST(anet, oa->net_list)
{
- cli_msg(-1014,"\t\t\t%18I/%u\t%s", anet->net, anet->mlen,
+ cli_msg(-1014,"\t\t\t%1I/%u\t%s", anet->net, anet->mlen,
anet->hidden ? "Hidden" : "Advertise");
}
}
diff --git a/proto/ospf/topology.c b/proto/ospf/topology.c
index f8a0d4c..2dfe3ac 100644
--- a/proto/ospf/topology.c
+++ b/proto/ospf/topology.c
@@ -629,7 +629,7 @@ ospf_top_dump(struct top_graph *f, struct proto *p)
struct top_hash_entry *e = f->hash_table[i];
while (e)
{
- OSPF_TRACE(D_EVENTS, "\t%1x %8I %8I %4u 0x%08x",
+ OSPF_TRACE(D_EVENTS, "\t%1x %-1I %-1I %4u 0x%08x",
e->lsa.type, e->lsa.id,
e->lsa.rt, e->lsa.age, e->lsa.sn);
e = e->next;