]> git.proxmox.com Git - mirror_frr.git/commitdiff
ospf6d: add debug ospf6 route memory to config
authorChirag Shah <chirag@cumulusnetworks.com>
Wed, 4 Oct 2017 20:56:54 +0000 (13:56 -0700)
committerChirag Shah <chirag@cumulusnetworks.com>
Wed, 4 Oct 2017 21:35:54 +0000 (14:35 -0700)
vty config write to display 'debug ospf6 route memory'.

Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
ospf6d/ospf6_route.c

index e58eab2b156d52d9ced1476fb532d37d6d9464a4..117d2eef89f6771a4f2338a092cbbb8c9636fee7 100644 (file)
@@ -1516,6 +1516,9 @@ int config_write_ospf6_debug_route(struct vty *vty)
                vty_out(vty, "debug ospf6 route intra-area\n");
        if (IS_OSPF6_DEBUG_ROUTE(INTER))
                vty_out(vty, "debug ospf6 route inter-area\n");
+       if (IS_OSPF6_DEBUG_ROUTE(MEMORY))
+               vty_out(vty, "debug ospf6 route memory\n");
+
        return 0;
 }