summaryrefslogtreecommitdiffstats
path: root/ospfd/ospf_interface.c
diff options
context:
space:
mode:
authorpilot <pilot>2007-09-18 09:03:13 +0000
committerpilot <pilot>2007-09-18 09:03:13 +0000
commit4ed57122060bac5fc9e6b1103ff52070b9c49e3e (patch)
treea6d1b39dcc6305a699029b233ac4bc72fb1372fc /ospfd/ospf_interface.c
parent81e1bbe99872398c55f7f4fa74f0803243731ec7 (diff)
downloadquagga-4ed57122060bac5fc9e6b1103ff52070b9c49e3e.tar.bz2
quagga-4ed57122060bac5fc9e6b1103ff52070b9c49e3e.tar.xz
+ fix missing arg to zlog_warn()
Diffstat (limited to 'ospfd/ospf_interface.c')
-rw-r--r--ospfd/ospf_interface.c2
1 files changed, 1 insertions, 1 deletions
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);
}