From 78c05cc159a51ecbbf6b15eda6f97b2b3c9e7187 Mon Sep 17 00:00:00 2001 From: "Ondrej Zajicek (work)" Date: Thu, 11 Jul 2019 15:39:41 +0200 Subject: [PATCH] OSPF: Update DR when local priority changes When priority is reconfigured locally, we need to trigger DR election. --- proto/ospf/iface.c | 1 + 1 file changed, 1 insertion(+) diff --git a/proto/ospf/iface.c b/proto/ospf/iface.c index feff0f43..5bdb4446 100644 --- a/proto/ospf/iface.c +++ b/proto/ospf/iface.c @@ -865,6 +865,7 @@ ospf_iface_reconfigure(struct ospf_iface *ifa, struct ospf_iface_patt *new) ifname, ifa->priority, new->priority); ifa->priority = new->priority; + ospf_iface_sm(ifa, ISM_NEICH); ospf_notify_link_lsa(ifa); }