From 929c5fb33ae40ccb30eb986e74716aa9ac130959 Mon Sep 17 00:00:00 2001 From: Quentin Young Date: Tue, 19 Feb 2019 23:42:06 +0000 Subject: [PATCH] vrrpd: default to accept mode = true We have no facilities to enforce accept mode = false yet so this is updated to reflect the actual state of the system. Signed-off-by: Quentin Young --- vrrpd/vrrp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrrpd/vrrp.c b/vrrpd/vrrp.c index 3a9746d5a9..e0f9b5286b 100644 --- a/vrrpd/vrrp.c +++ b/vrrpd/vrrp.c @@ -533,7 +533,7 @@ struct vrrp_vrouter *vrrp_vrouter_create(struct interface *ifp, uint8_t vrid, vr->vrid = vrid; vr->priority = VRRP_DEFAULT_PRIORITY; vr->preempt_mode = true; - vr->accept_mode = false; + vr->accept_mode = true; vr->v4 = vrrp_router_create(vr, AF_INET); vr->v6 = vrrp_router_create(vr, AF_INET6); -- 2.39.5