From 6c6959e811232821967087ab2cab50cddfe59bfa Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Fri, 14 Feb 2020 00:53:43 -0500 Subject: [PATCH] sharpd: Add missing yang route-map callbacks sharpd was missing the yang route-map callbacks. Add it in so it doesn't crash. Signed-off-by: Donald Sharp --- sharpd/sharp_main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sharpd/sharp_main.c b/sharpd/sharp_main.c index a00106d686..5133523f01 100644 --- a/sharpd/sharp_main.c +++ b/sharpd/sharp_main.c @@ -112,6 +112,8 @@ struct quagga_signal_t sharp_signals[] = { #define SHARP_VTY_PORT 2614 static const struct frr_yang_module_info *const sharpd_yang_modules[] = { + &frr_interface_info, + &frr_route_map_info, }; FRR_DAEMON_INFO(sharpd, SHARP, .vty_port = SHARP_VTY_PORT, -- 2.39.5