]> git.puffer.fish Git - matthieu/frr.git/commitdiff
2004-12-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
authorajs <ajs>
Wed, 29 Dec 2004 21:04:48 +0000 (21:04 +0000)
committerajs <ajs>
Wed, 29 Dec 2004 21:04:48 +0000 (21:04 +0000)
* ospf_packet.c: (ospf_db_desc) Reduce severity of "Negotiation done"
  messages from LOG_WARNING to LOG_INFO, since this seems to be
  normal.

ospfd/ChangeLog
ospfd/ospf_packet.c

index d0d40120a6310f602f812732df0eef95644477b0..6686bdc0129b1dd2dacd06eab1c54da3f176b01b 100644 (file)
@@ -1,3 +1,9 @@
+2004-12-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
+
+       * ospf_packet.c: (ospf_db_desc) Reduce severity of "Negotiation done"
+         messages from LOG_WARNING to LOG_INFO, since this seems to be
+         normal.
+
 2004-12-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
 
        * ospf_packet.c: (ospf_read) Always look up the interface if
index 0a6572d03774c0fcadc61f4226024c34cfdec21f..6eb6651f2a31b840264e9032685f3929a4b6d376 100644 (file)
@@ -1181,7 +1181,7 @@ ospf_db_desc (struct ip *iph, struct ospf_header *ospfh,
          if (IPV4_ADDR_CMP (&nbr->router_id, &oi->ospf->router_id) > 0)
            {
              /* We're Slave---obey */
-             zlog_warn ("Packet[DD]: Neighbor %s Negotiation done (Slave).",
+             zlog_info ("Packet[DD]: Neighbor %s Negotiation done (Slave).",
                         inet_ntoa(nbr->router_id));
              nbr->dd_seqnum = ntohl (dd->dd_seqnum);
              nbr->dd_flags &= ~(OSPF_DD_FLAG_MS|OSPF_DD_FLAG_I); /* Reset I/MS */
@@ -1199,7 +1199,7 @@ ospf_db_desc (struct ip *iph, struct ospf_header *ospfh,
               ntohl (dd->dd_seqnum) == nbr->dd_seqnum &&
               IPV4_ADDR_CMP (&nbr->router_id, &oi->ospf->router_id) < 0)
        {
-         zlog_warn ("Packet[DD]: Neighbor %s Negotiation done (Master).",
+         zlog_info ("Packet[DD]: Neighbor %s Negotiation done (Master).",
                     inet_ntoa(nbr->router_id));
          nbr->dd_flags &= ~OSPF_DD_FLAG_I;
        }