summaryrefslogtreecommitdiffstats
path: root/ospfd/ospf_packet.c
diff options
context:
space:
mode:
authorpaul <paul>2003-01-27 11:57:46 +0000
committerpaul <paul>2003-01-27 11:57:46 +0000
commit244135736b64ef00a7e341421e95a6fbaa0b7cda (patch)
tree0f0be992fcb4f9c65301a8e547037b1101d8103a /ospfd/ospf_packet.c
parent7396196dfd574ea557f00bb91c5f31b4c0d046c7 (diff)
downloadquagga-244135736b64ef00a7e341421e95a6fbaa0b7cda.tar.bz2
quagga-244135736b64ef00a7e341421e95a6fbaa0b7cda.tar.xz
revert unchecked debug info generated by Kevin Miller's patch
Diffstat (limited to 'ospfd/ospf_packet.c')
-rw-r--r--ospfd/ospf_packet.c6
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)