vrrp: fix feature declaration for v6 accept-mode 83/27783/2
authorMatthew Smith <mgsmith@netgate.com>
Mon, 29 Jun 2020 17:13:21 +0000 (12:13 -0500)
committerFlorin Coras <florin.coras@gmail.com>
Thu, 2 Jul 2020 17:03:11 +0000 (17:03 +0000)
Type: fix

The v6 accept mode input feature was being declared with
the node added to ip4-multicast instead of ip6-multicast. Add to
the correct arc.

Change-Id: I08f6e5e7dde84a37687fa0af750a7a16fe537ea6
Signed-off-by: Matthew Smith <mgsmith@netgate.com>
src/plugins/vrrp/node.c

index 1585a48..a916bcc 100644 (file)
@@ -1071,7 +1071,7 @@ VLIB_REGISTER_NODE (vrrp6_accept_owner_input_node) =
 
 VNET_FEATURE_INIT (vrrp6_accept_owner_mc, static) =
 {
-  .arc_name = "ip4-multicast",
+  .arc_name = "ip6-multicast",
   .node_name = "vrrp6-accept-owner-input",
   .runs_before = VNET_FEATURES ("ip6-mfib-forward-lookup"),
 };