summaryrefslogtreecommitdiffstats
path: root/proto
diff options
context:
space:
mode:
authorOndrej Filip <feela@network.cz>2000-06-06 04:54:41 +0200
committerOndrej Filip <feela@network.cz>2000-06-06 04:54:41 +0200
commitee4880c82fcefe61cccb8ec729905a2b19706d33 (patch)
treebdccc954291367ff1383dddf7d31f8fe6107468c /proto
parent064b1d893243bc187980f53292414583ff3b4630 (diff)
downloadbird-ee4880c82fcefe61cccb8ec729905a2b19706d33.tar
bird-ee4880c82fcefe61cccb8ec729905a2b19706d33.zip
Some '\n' deleted.
Diffstat (limited to 'proto')
-rw-r--r--proto/ospf/ospf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c
index 1912305..70098aa 100644
--- a/proto/ospf/ospf.c
+++ b/proto/ospf/ospf.c
@@ -64,7 +64,7 @@ ospf_dump(struct proto *p)
struct proto_ospf *po=(struct proto_ospf *)p;
struct ospf_area *oa;
- OSPF_TRACE(D_EVENTS, "Area number: %d\n", po->areano);
+ OSPF_TRACE(D_EVENTS, "Area number: %d", po->areano);
WALK_LIST(ifa, po->iface_list)
{
@@ -74,7 +74,7 @@ ospf_dump(struct proto *p)
OSPF_TRACE(D_EVENTS, "BDR: %I", ifa->bdrid);
WALK_LIST(n, ifa->neigh_list)
{
- OSPF_TRACE(D_EVENTS, " neighbor %I in state %u\n", n->rid, n->state);
+ OSPF_TRACE(D_EVENTS, " neighbor %I in state %u", n->rid, n->state);
}
}
@@ -240,7 +240,7 @@ ospf_shutdown(struct proto *p)
struct ospf_iface *ifa;
struct ospf_neighbor *n;
struct ospf_area *oa;
- OSPF_TRACE(D_EVENTS, "Shutdown requested\n");
+ OSPF_TRACE(D_EVENTS, "Shutdown requested");
/* And send to all my neighbors 1WAY */
WALK_LIST(ifa, po->iface_list)
@@ -257,7 +257,7 @@ ospf_rt_notify(struct proto *p, net *n, rte *new, rte *old, ea_list *attrs)
{
struct proto_ospf *po=(struct proto_ospf *)p;
- OSPF_TRACE(D_EVENTS, "Got route %I/%d %s\n", p->name, n->n.prefix,
+ OSPF_TRACE(D_EVENTS, "Got route %I/%d %s", p->name, n->n.prefix,
n->n.pxlen, new ? "up" : "down");
if(new) /* Got some new route */