From: Chirag Shah Date: Wed, 4 Oct 2017 20:56:54 +0000 (-0700) Subject: ospf6d: add debug ospf6 route memory to config X-Git-Tag: frr-4.0-dev~241^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=refs%2Fpull%2F1292%2Fhead;p=mirror%2Ffrr.git ospf6d: add debug ospf6 route memory to config vty config write to display 'debug ospf6 route memory'. Signed-off-by: Chirag Shah --- diff --git a/ospf6d/ospf6_route.c b/ospf6d/ospf6_route.c index e58eab2b15..117d2eef89 100644 --- a/ospf6d/ospf6_route.c +++ b/ospf6d/ospf6_route.c @@ -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; }