From: Paul Jakma Date: Thu, 15 Jun 2006 11:41:19 +0000 (+0000) Subject: [ospfd] suppres mostly uninteresting debug message unless debug is set X-Git-Tag: frr-2.0-rc1~2675 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=88871b1d1ea8150ddf3d8f66fe77323770ba0f9f;p=mirror%2Ffrr.git [ospfd] suppres mostly uninteresting debug message unless debug is set 2006-05-30 Paul Jakma * ospf_packet.c: (ospf_read) Debug message about packets received on unenabled interfaces should be conditional on debug being set. --- diff --git a/ospfd/ChangeLog b/ospfd/ChangeLog index 4749618d2f..32b39aae51 100644 --- a/ospfd/ChangeLog +++ b/ospfd/ChangeLog @@ -1,3 +1,9 @@ +2006-05-30 Paul Jakma + + * ospf_packet.c: (ospf_read) Debug message about packets + received on unenabled interfaces should be conditional on + debug being set. + 2006-05-13 Paul Jakma * ospf_lsa.c: (ospf_translated_nssa_refresh) fix the sanity diff --git a/ospfd/ospf_packet.c b/ospfd/ospf_packet.c index d6aca71986..a842ca6856 100644 --- a/ospfd/ospf_packet.c +++ b/ospfd/ospf_packet.c @@ -2363,9 +2363,10 @@ ospf_read (struct thread *thread) { if ((oi = ospf_associate_packet_vl (ospf, ifp, iph, ospfh)) == NULL) { - zlog_debug ("Packet from [%s] received on link %s" - " but no ospf_interface", - inet_ntoa (iph->ip_src), ifp->name); + if (IS_DEBUG_OSPF_EVENT) + zlog_debug ("Packet from [%s] received on link %s" + " but no ospf_interface", + inet_ntoa (iph->ip_src), ifp->name); return 0; } }