mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-09 20:58:44 +00:00
Fix %<something>I format strings.
This commit is contained in:
parent
30b773041c
commit
e43ae6330e
@ -538,7 +538,7 @@ rte_dump(rte *e)
|
|||||||
{
|
{
|
||||||
net *n = e->net;
|
net *n = e->net;
|
||||||
if (n)
|
if (n)
|
||||||
debug("%1I/%2d ", n->n.prefix, n->n.pxlen);
|
debug("%-1I/%2d ", n->n.prefix, n->n.pxlen);
|
||||||
else
|
else
|
||||||
debug("??? ");
|
debug("??? ");
|
||||||
debug("KF=%02x PF=%02x pref=%d lm=%d ", n->n.flags, e->pflags, e->pref, now-e->lastmod);
|
debug("KF=%02x PF=%02x pref=%d lm=%d ", n->n.flags, e->pflags, e->pref, now-e->lastmod);
|
||||||
|
@ -88,7 +88,7 @@ ospf_dbdes_tx(struct ospf_neighbor *n)
|
|||||||
en=(struct top_hash_entry *)sn;
|
en=(struct top_hash_entry *)sn;
|
||||||
htonlsah(&(en->lsa), lsa);
|
htonlsah(&(en->lsa), lsa);
|
||||||
DBG("Working on: %d\n", i);
|
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);
|
en->lsa.rt, en->lsa_body);
|
||||||
|
|
||||||
if(sn==STAIL(n->ifa->oa->lsal))
|
if(sn==STAIL(n->ifa->oa->lsal))
|
||||||
|
@ -545,6 +545,6 @@ ospf_sh_neigh_info(struct ospf_neighbor *n)
|
|||||||
if(n->rid==ifa->bdrid) pos="bdr ";
|
if(n->rid==ifa->bdrid) pos="bdr ";
|
||||||
if(n->ifa->type==OSPF_IT_PTP) pos="ptp ";
|
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);
|
ospf_ns[n->state], pos, etime, n->ip,ifa->iface->name);
|
||||||
}
|
}
|
||||||
|
@ -836,7 +836,7 @@ ospf_sh(struct proto *p)
|
|||||||
cli_msg(-1014,"\t\tArea networks:");
|
cli_msg(-1014,"\t\tArea networks:");
|
||||||
WALK_LIST(anet, oa->net_list)
|
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");
|
anet->hidden ? "Hidden" : "Advertise");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -629,7 +629,7 @@ ospf_top_dump(struct top_graph *f, struct proto *p)
|
|||||||
struct top_hash_entry *e = f->hash_table[i];
|
struct top_hash_entry *e = f->hash_table[i];
|
||||||
while (e)
|
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.type, e->lsa.id,
|
||||||
e->lsa.rt, e->lsa.age, e->lsa.sn);
|
e->lsa.rt, e->lsa.age, e->lsa.sn);
|
||||||
e = e->next;
|
e = e->next;
|
||||||
|
@ -150,7 +150,7 @@ static_neigh_notify(struct neighbor *n)
|
|||||||
static void
|
static void
|
||||||
static_dump_rt(struct static_route *r)
|
static_dump_rt(struct static_route *r)
|
||||||
{
|
{
|
||||||
debug("%16I/%2d: ", r->net, r->masklen);
|
debug("%-1I/%2d: ", r->net, r->masklen);
|
||||||
switch (r->dest)
|
switch (r->dest)
|
||||||
{
|
{
|
||||||
case RTD_ROUTER:
|
case RTD_ROUTER:
|
||||||
|
Loading…
Reference in New Issue
Block a user