]> git.puffer.fish Git - matthieu/frr.git/commitdiff
ospf6d: accept CLI `no` for point-to-multipoint
authorDavid Lamparter <equinox@opensourcerouting.org>
Thu, 25 Apr 2024 10:20:27 +0000 (12:20 +0200)
committerton31337 <3352707+ton31337@users.noreply.github.com>
Sat, 4 May 2024 14:07:55 +0000 (14:07 +0000)
`point-to-multipoint` was missing on the removal variant of this CLI
command.

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
(cherry picked from commit 52734fc8e5dad3569c3c37251f6dcc7a83c07299)

ospf6d/ospf6_interface.c

index 8549af06ecf34c17d18344db9082d4e904d75332..7f813ce3cc25333d1cc3f967f74085fbbd30abd8 100644 (file)
@@ -2644,13 +2644,14 @@ DEFUN (ipv6_ospf6_network,
 
 DEFUN (no_ipv6_ospf6_network,
        no_ipv6_ospf6_network_cmd,
-       "no ipv6 ospf6 network [<broadcast|point-to-point>]",
+       "no ipv6 ospf6 network [<broadcast|point-to-point|point-to-multipoint>]",
        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;