]> git.puffer.fish Git - mirror/frr.git/commitdiff
zebra: fix missing route-advert stubs 5832/head
authorMark Stapp <mjs@voltanet.io>
Wed, 19 Feb 2020 13:44:05 +0000 (08:44 -0500)
committerMark Stapp <mjs@voltanet.io>
Wed, 19 Feb 2020 13:44:05 +0000 (08:44 -0500)
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 <mjs@voltanet.io>
zebra/rtadv.c

index e9a97d4b152cd704726bcf695588854c4466486f..c710978d78d139683be69a242c018fbd9361e5c9 100644 (file)
@@ -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 */