+ fix missing arg to zlog_warn()

This commit is contained in:
Denis Ovsienko 2007-09-18 09:03:13 +00:00
parent f102e75f61
commit fb31c0fea3
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
about getting more buffer space, than requested. about getting more buffer space, than requested.
* ospfd.[ch]: (ospf_new) Abandon OSPF_SNDBUFLEN_DEFAULT * ospfd.[ch]: (ospf_new) Abandon OSPF_SNDBUFLEN_DEFAULT
and consider OS's initial buffer size instead. and consider OS's initial buffer size instead.
* ospf_interface.c: (ospf_if_up) Fix missing argument.
2007-08-21 Denis Ovsienko 2007-08-21 Denis Ovsienko

View File

@ -785,7 +785,7 @@ ospf_if_up (struct ospf_interface *oi)
if (ospf != NULL) if (ospf != NULL)
ospf_adjust_sndbuflen (ospf, oi->ifp->mtu); ospf_adjust_sndbuflen (ospf, oi->ifp->mtu);
else else
zlog_warn ("%s: ospf_lookup() returned NULL"); zlog_warn ("%s: ospf_lookup() returned NULL", __func__);
ospf_if_stream_set (oi); ospf_if_stream_set (oi);
OSPF_ISM_EVENT_SCHEDULE (oi, ISM_InterfaceUp); OSPF_ISM_EVENT_SCHEDULE (oi, ISM_InterfaceUp);
} }