]> git.puffer.fish Git - mirror/frr.git/commitdiff
+ fix missing arg to zlog_warn()
authorDenis Ovsienko <linux@pilot.org.ua>
Tue, 18 Sep 2007 09:03:13 +0000 (09:03 +0000)
committerDenis Ovsienko <linux@pilot.org.ua>
Tue, 18 Sep 2007 09:03:13 +0000 (09:03 +0000)
ospfd/ChangeLog
ospfd/ospf_interface.c

index ce7651628804ab1776a854123c4a65466f1e2ef0..30e2d60b66d3f59d0616b3b54563a4333b833819 100644 (file)
@@ -4,6 +4,7 @@
          about getting more buffer space, than requested.
        * ospfd.[ch]: (ospf_new) Abandon OSPF_SNDBUFLEN_DEFAULT
          and consider OS's initial buffer size instead.
+       * ospf_interface.c: (ospf_if_up) Fix missing argument.
 
 2007-08-21 Denis Ovsienko
 
index 862735be79e5e81f8dc54e0b4846c6692ab1516f..636814297e148fce6f6e069eefbc97c0936a2492 100644 (file)
@@ -785,7 +785,7 @@ ospf_if_up (struct ospf_interface *oi)
       if (ospf != NULL)
         ospf_adjust_sndbuflen (ospf, oi->ifp->mtu);
       else
-        zlog_warn ("%s: ospf_lookup() returned NULL");
+        zlog_warn ("%s: ospf_lookup() returned NULL", __func__);
       ospf_if_stream_set (oi);
       OSPF_ISM_EVENT_SCHEDULE (oi, ISM_InterfaceUp);
     }