diff options
Diffstat (limited to 'ospf6d/ospf6_top.c')
| -rw-r--r-- | ospf6d/ospf6_top.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ospf6d/ospf6_top.c b/ospf6d/ospf6_top.c index f18eea2129..d4557e0ef6 100644 --- a/ospf6d/ospf6_top.c +++ b/ospf6d/ospf6_top.c @@ -73,6 +73,8 @@ struct ospf6_master *om6; static void ospf6_disable(struct ospf6 *o); +static void ospf6_process_reset(struct ospf6 *ospf6); + static void ospf6_add(struct ospf6 *ospf6) { listnode_add(om6->ospf6, ospf6); @@ -628,6 +630,9 @@ void ospf6_router_id_update(struct ospf6 *ospf6, bool init, struct vty *vty) } ospf6->router_id = new_router_id; + + if (!init) + ospf6_process_reset(ospf6); } /* start ospf6 */ |
