Merge pull request #7717 from ranjanyash54/2368

ospf6d: ospfv3 disable on the interface, but interface prefix still s…
This commit is contained in:
Russ White 2020-12-15 07:29:10 -05:00 committed by GitHub
commit 30ff2a502e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -849,7 +849,7 @@ DEFUN (no_ospf6_interface_area,
return CMD_SUCCESS;
}
thread_execute(master, interface_down, oi, 0);
ospf6_interface_disable(oi);
oa = oi->area;
listnode_delete(oi->area->if_list, oi);
@ -860,6 +860,7 @@ DEFUN (no_ospf6_interface_area,
UNSET_FLAG(oa->flag, OSPF6_AREA_ENABLE);
ospf6_abr_disable_area(oa);
}
ospf6_interface_delete(oi);
return CMD_SUCCESS;
}