diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-06-18 15:46:19 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-08-14 22:02:05 +0200 |
commit | 4ba03be5d32a53b439e3cd8c059c2d48eebd04eb (patch) | |
tree | 118d7d2157194895912f1ab0929be018a128ad1b /ospf6d/ospf6_spf.c | |
parent | lib: Cleanup some missed LIB_ERR_SYSTEM_CALL (diff) | |
download | frr-4ba03be5d32a53b439e3cd8c059c2d48eebd04eb.tar.xz frr-4ba03be5d32a53b439e3cd8c059c2d48eebd04eb.zip |
ospf6d: Update OSPFv3 to use new zlog_ferr
Update OSPFv3 to use the new zlog_ferr messages
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'ospf6d/ospf6_spf.c')
-rw-r--r-- | ospf6d/ospf6_spf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ospf6d/ospf6_spf.c b/ospf6d/ospf6_spf.c index 69c18ab75..c64f56ba3 100644 --- a/ospf6d/ospf6_spf.c +++ b/ospf6d/ospf6_spf.c @@ -30,6 +30,7 @@ #include "pqueue.h" #include "linklist.h" #include "thread.h" +#include "lib_errors.h" #include "ospf6_lsa.h" #include "ospf6_lsdb.h" @@ -272,7 +273,8 @@ static void ospf6_nexthop_calc(struct ospf6_vertex *w, struct ospf6_vertex *v, ifindex = (VERTEX_IS_TYPE(NETWORK, v) ? ospf6_spf_get_ifindex_from_nh(v) : ROUTER_LSDESC_GET_IFID(lsdesc)); if (ifindex == 0) { - zlog_err("No nexthop ifindex at vertex %s", v->name); + zlog_ferr(LIB_ERR_DEVELOPMENT, + "No nexthop ifindex at vertex %s", v->name); return; } |