diff options
author | Denis Ovsienko <linux@pilot.org.ua> | 2007-09-18 09:03:13 +0000 |
---|---|---|
committer | Denis Ovsienko <linux@pilot.org.ua> | 2007-09-18 09:03:13 +0000 |
commit | fb31c0fea38c863ddcda56f46c36f065340b9e32 (patch) | |
tree | 5ccad0644a6b04eb127c36dc651155dbcf9eb2ac | |
parent | f102e75f613af740241dfa7253a2362c7935b9a8 (diff) |
+ fix missing arg to zlog_warn()
-rw-r--r-- | ospfd/ChangeLog | 1 | ||||
-rw-r--r-- | ospfd/ospf_interface.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ospfd/ChangeLog b/ospfd/ChangeLog index ce765162..30e2d60b 100644 --- a/ospfd/ChangeLog +++ b/ospfd/ChangeLog @@ -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 diff --git a/ospfd/ospf_interface.c b/ospfd/ospf_interface.c index 862735be..63681429 100644 --- a/ospfd/ospf_interface.c +++ b/ospfd/ospf_interface.c @@ -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); } |