summaryrefslogtreecommitdiffstats
path: root/ospfd/ospf_te.c
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2018-04-17 20:08:57 +0200
committerQuentin Young <qlyoung@cumulusnetworks.com>2018-04-17 20:08:57 +0200
commit7ff7fcd2a1da7e9ef0c1f91a5fd794b990f7885b (patch)
tree351192e40b2bd7388bd5f5bbf76c1d2a94e7dcc0 /ospfd/ospf_te.c
parentbgpd: clean up clist management logic (diff)
downloadfrr-7ff7fcd2a1da7e9ef0c1f91a5fd794b990f7885b.tar.xz
frr-7ff7fcd2a1da7e9ef0c1f91a5fd794b990f7885b.zip
ospfd: use __func__ in ospf_te.c
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'ospfd/ospf_te.c')
-rw-r--r--ospfd/ospf_te.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ospfd/ospf_te.c b/ospfd/ospf_te.c
index 13857fd0b..26df7a24c 100644
--- a/ospfd/ospf_te.c
+++ b/ospfd/ospf_te.c
@@ -1207,12 +1207,12 @@ static struct ospf_lsa *ospf_mpls_te_lsa_new(struct ospf *ospf,
/* Now, create an OSPF LSA instance. */
if ((new = ospf_lsa_new()) == NULL) {
- zlog_warn("ospf_mpls_te_lsa_new: ospf_lsa_new() ?");
+ zlog_warn("%s: ospf_lsa_new() ?", __func__);
stream_free(s);
return NULL;
}
if ((new->data = ospf_lsa_data_new(length)) == NULL) {
- zlog_warn("ospf_mpls_te_lsa_new: ospf_lsa_data_new() ?");
+ zlog_warn("%s: ospf_lsa_data_new() ?", __func__);
ospf_lsa_unlock(&new);
new = NULL;
stream_free(s);