summaryrefslogtreecommitdiffstats
path: root/proto/ospf/iface.c
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2009-07-23 16:51:28 +0200
committerOndrej Zajicek <santiago@crfreenet.org>2009-07-23 16:51:28 +0200
commit3aab39f589c352e30e9db92346b579dd561482b3 (patch)
treed8d6338aaae7d64fc67e704aeed95006afd59396 /proto/ospf/iface.c
parent2f6483cd312ffd7ef055099ce801fb8f437d9abe (diff)
downloadbird-3aab39f589c352e30e9db92346b579dd561482b3.tar
bird-3aab39f589c352e30e9db92346b579dd561482b3.zip
Use %R in OSPF when appropriate.
Diffstat (limited to 'proto/ospf/iface.c')
-rw-r--r--proto/ospf/iface.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/proto/ospf/iface.c b/proto/ospf/iface.c
index 2239bef..ea38461 100644
--- a/proto/ospf/iface.c
+++ b/proto/ospf/iface.c
@@ -112,8 +112,8 @@ ospf_iface_chstate(struct ospf_iface *ifa, u8 state)
if (ifa->type == OSPF_IT_VLINK)
{
OSPF_TRACE(D_EVENTS,
- "Changing state of virtual link %I from \"%s\" into \"%s\".",
- ipa_from_u32(ifa->vid), ospf_is[oldstate], ospf_is[state]);
+ "Changing state of virtual link %R from \"%s\" into \"%s\".",
+ ifa->vid, ospf_is[oldstate], ospf_is[state]);
if (state == OSPF_IS_PTP)
{
ifa->ip_sk = ospf_open_ip_socket(ifa);
@@ -586,8 +586,8 @@ ospf_iface_info(struct ospf_iface *ifa)
strict = "";
if (ifa->type == OSPF_IT_VLINK)
{
- cli_msg(-1015, "Virtual link to %I:", ipa_from_u32(ifa->vid));
- cli_msg(-1015, "\tTransit area: %I (%u)", ipa_from_u32(ifa->voa->areaid),
+ cli_msg(-1015, "Virtual link to %R:", ifa->vid);
+ cli_msg(-1015, "\tTransit area: %R (%u)", ifa->voa->areaid,
ifa->voa->areaid);
}
else
@@ -595,7 +595,7 @@ ospf_iface_info(struct ospf_iface *ifa)
cli_msg(-1015, "Interface \"%s\":",
(ifa->iface ? ifa->iface->name : "(none)"));
cli_msg(-1015, "\tType: %s %s", ospf_it[ifa->type], strict);
- cli_msg(-1015, "\tArea: %I (%u)", ipa_from_u32(ifa->oa->areaid), ifa->oa->areaid);
+ cli_msg(-1015, "\tArea: %R (%u)", ifa->oa->areaid, ifa->oa->areaid);
}
cli_msg(-1015, "\tState: %s %s", ospf_is[ifa->state],
ifa->stub ? "(stub)" : "");
@@ -612,9 +612,9 @@ ospf_iface_info(struct ospf_iface *ifa)
cli_msg(-1015, "\tRetransmit timer: %u", ifa->rxmtint);
if ((ifa->type == OSPF_IT_BCAST) || (ifa->type == OSPF_IT_NBMA))
{
- cli_msg(-1015, "\tDesigned router (ID): %I", ipa_from_u32(ifa->drid));
+ cli_msg(-1015, "\tDesigned router (ID): %R", ifa->drid);
cli_msg(-1015, "\tDesigned router (IP): %I", ifa->drip);
- cli_msg(-1015, "\tBackup designed router (ID): %I", ipa_from_u32(ifa->bdrid));
+ cli_msg(-1015, "\tBackup designed router (ID): %R", ifa->bdrid);
cli_msg(-1015, "\tBackup designed router (IP): %I", ifa->bdrip);
}
}