From: David Lamparter Date: Thu, 25 Apr 2024 10:20:27 +0000 (+0200) Subject: ospf6d: accept CLI `no` for point-to-multipoint X-Git-Tag: base_10.1~113^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=refs%2Fpull%2F15840%2Fhead;p=mirror%2Ffrr.git ospf6d: accept CLI `no` for point-to-multipoint `point-to-multipoint` was missing on the removal variant of this CLI command. Signed-off-by: David Lamparter --- diff --git a/ospf6d/ospf6_interface.c b/ospf6d/ospf6_interface.c index 8549af06ec..7f813ce3cc 100644 --- a/ospf6d/ospf6_interface.c +++ b/ospf6d/ospf6_interface.c @@ -2644,13 +2644,14 @@ DEFUN (ipv6_ospf6_network, DEFUN (no_ipv6_ospf6_network, no_ipv6_ospf6_network_cmd, - "no ipv6 ospf6 network []", + "no ipv6 ospf6 network []", NO_STR IP6_STR OSPF6_STR "Set default network type\n" "Specify OSPF6 broadcast network\n" - "Specify OSPF6 point-to-point network\n") + "Specify OSPF6 point-to-point network\n" + "Specify OSPF6 point-to-multipoint network\n") { VTY_DECLVAR_CONTEXT(interface, ifp); struct ospf6_interface *oi;