Skip to content

Commit

Permalink
+ fix missing arg to zlog_warn()
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Ovsienko committed Sep 18, 2007
1 parent f102e75 commit fb31c0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ospfd/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion ospfd/ospf_interface.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit fb31c0f

Please sign in to comment.