From 39008ca19ea46922541f80fdafd713e198fce8c6 Mon Sep 17 00:00:00 2001
From: Matthew Smith <mgsmith@netgate.com>
Date: Mon, 29 Jun 2020 12:13:21 -0500
Subject: vrrp: fix feature declaration for v6 accept-mode

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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src')

diff --git a/src/plugins/vrrp/node.c b/src/plugins/vrrp/node.c
index 1585a48a6ac..a916bcc03ff 100644
--- a/src/plugins/vrrp/node.c
+++ b/src/plugins/vrrp/node.c
@@ -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"),
 };
-- 
cgit