From: Mark Stapp Date: Wed, 19 Feb 2020 13:44:05 +0000 (-0500) Subject: zebra: fix missing route-advert stubs X-Git-Tag: frr-7.3.1~19^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=0b7086494e9fe056f35560bcab53ff9eb0e68df4;p=matthieu%2Ffrr.git zebra: fix missing route-advert stubs Stubs are used when frr is built without route-advert support; a couple of apis were missing, causing builds to fail. Signed-off-by: Mark Stapp --- diff --git a/zebra/rtadv.c b/zebra/rtadv.c index e9a97d4b15..c710978d78 100644 --- a/zebra/rtadv.c +++ b/zebra/rtadv.c @@ -2399,4 +2399,15 @@ void rtadv_cmd_init(void) { /* Empty.*/; } + +void rtadv_stop_ra(struct interface *ifp) +{ + /* Empty.*/; +} + +void rtadv_stop_ra_all(void) +{ + /* Empty.*/; +} + #endif /* HAVE_RTADV */