mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-12 16:12:36 +00:00
+ fix missing arg to zlog_warn()
This commit is contained in:
parent
f102e75f61
commit
fb31c0fea3
@ -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
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user