diff options
author | paul <paul> | 2003-01-27 11:57:46 +0000 |
---|---|---|
committer | paul <paul> | 2003-01-27 11:57:46 +0000 |
commit | 7cfb15fe15a419489cb82192d19344efc7871274 (patch) | |
tree | 4bdab680013a1c91ee8602ddbade093ec3513af5 /ospfd | |
parent | 5087df5683a810ee919d5e957cd210223b5f31e7 (diff) |
revert unchecked debug info generated by Kevin Miller's patch
Diffstat (limited to 'ospfd')
-rw-r--r-- | ospfd/ospf_packet.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ospfd/ospf_packet.c b/ospfd/ospf_packet.c index ceb6d845..5913803c 100644 --- a/ospfd/ospf_packet.c +++ b/ospfd/ospf_packet.c @@ -616,8 +616,6 @@ ospf_hello (struct ip *iph, struct ospf_header *ospfh, /* increment statistics. */ oi->hello_in++; - zlog_info ("Packet %s [Hello:RECV]: oi hello cnt %d", - inet_ntoa (ospfh->router_id), oi->hello_in); hello = (struct ospf_hello *) STREAM_PNT (s); @@ -2460,10 +2458,6 @@ ospf_make_hello (struct ospf_interface *oi, struct stream *s) /* Add neighbor seen. */ for (rn = route_top (oi->nbrs); rn; rn = route_next (rn)) if ((nbr = rn->info) != NULL) { - zlog_info("make_hello: nbr %s, state %d", - inet_ntoa(nbr->router_id), - nbr->state); - /* ignore 0.0.0.0 node. */ if (nbr->router_id.s_addr != 0) if (nbr->state != NSM_Attempt) |