diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-02-14 00:53:43 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-02-14 00:53:43 -0500 | 
| commit | 6c6959e811232821967087ab2cab50cddfe59bfa (patch) | |
| tree | eb64654cd0a3e95c9017f6d2da6afffc51861f74 /sharpd/sharp_main.c | |
| parent | 4b6b4784140962781c7cf4245ce8d1361eaac956 (diff) | |
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@cumulusnetworks.com>
Diffstat (limited to 'sharpd/sharp_main.c')
| -rw-r--r-- | sharpd/sharp_main.c | 2 | 
1 files changed, 2 insertions, 0 deletions
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,  | 
