summaryrefslogtreecommitdiffstats
path: root/proto/ospf/topology.c
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2009-01-11 12:14:27 +0100
committerOndrej Zajicek <santiago@crfreenet.org>2009-01-11 12:14:27 +0100
commit23d6702952841184d364a5520dbe6be7a1a5d14b (patch)
tree5172dc8ef03cfdbbc610442b6a8033beac198cdb /proto/ospf/topology.c
parent0e9617e400d54f6f5119a24e7380b7719c2fc3dd (diff)
downloadbird-23d6702952841184d364a5520dbe6be7a1a5d14b.tar
bird-23d6702952841184d364a5520dbe6be7a1a5d14b.zip
Some fixes and update of OSPF debug messages
Diffstat (limited to 'proto/ospf/topology.c')
-rw-r--r--proto/ospf/topology.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/proto/ospf/topology.c b/proto/ospf/topology.c
index 9b2befb..c3f70fd 100644
--- a/proto/ospf/topology.c
+++ b/proto/ospf/topology.c
@@ -539,9 +539,9 @@ check_sum_lsa(struct proto_ospf *po, ort *nf, int dest)
if ((nf->n.type > RTS_OSPF_IA) && (nf->o.type > RTS_OSPF_IA)) return;
#ifdef LOCAL_DEBUG
- DBG("Checking...dest = %d, %I/%d", dest, nf->fn.prefix, nf->fn.pxlen);
- if (nf->n.oa) DBG("New: met=%d, oa=%d", nf->n.metric1, nf->n.oa->areaid);
- if (nf->o.oa) DBG("Old: met=%d, oa=%d", nf->o.metric1, nf->o.oa->areaid);
+ DBG("Checking...dest = %d, %I/%d\n", dest, nf->fn.prefix, nf->fn.pxlen);
+ if (nf->n.oa) DBG("New: met=%d, oa=%d\n", nf->n.metric1, nf->n.oa->areaid);
+ if (nf->o.oa) DBG("Old: met=%d, oa=%d\n", nf->o.metric1, nf->o.oa->areaid);
#endif
WALK_LIST(oa, po->area_list)