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_route.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_route.c')
-rw-r--r-- | ospf6d/ospf6_route.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ospf6d/ospf6_route.c b/ospf6d/ospf6_route.c index 15d8eb6cf..b1ac67ae7 100644 --- a/ospf6d/ospf6_route.c +++ b/ospf6d/ospf6_route.c @@ -574,8 +574,8 @@ static void route_table_assert(struct ospf6_route_table *table) if (link_error == 0 && num == table->count) return; - zlog_err("PANIC !!"); - zlog_err("Something has gone wrong with ospf6_route_table[%p]", table); + zlog_ferr(LIB_ERR_DEVELOPMENT, "PANIC !!"); + zlog_ferr(LIB_ERR_DEVELOPMENT, "Something has gone wrong with ospf6_route_table[%p]", table); zlog_debug("table count = %d, real number = %d", table->count, num); zlog_debug("DUMP START"); for (r = ospf6_route_head(table); r; r = ospf6_route_next(r)) { |