From 098fc8a9cd6d0f2565b1fab1772b6286e03f4000 Mon Sep 17 00:00:00 2001 From: Fredi Raspall Date: Wed, 28 Apr 2021 11:16:51 +0200 Subject: [PATCH] isisd: fix show LFA debug in show debugging cmd When enabling 'debug isis lfa', the option was correctly enabled but not displayed by 'show debugging' command. Signed-off-by: Fredi Raspall --- isisd/isisd.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/isisd/isisd.c b/isisd/isisd.c index 9730680de9..37416fc1a4 100644 --- a/isisd/isisd.c +++ b/isisd/isisd.c @@ -1376,6 +1376,9 @@ DEFUN_NOSH (show_debugging, print_debug(vty, DEBUG_BFD, 1); if (IS_DEBUG_LDP_SYNC) print_debug(vty, DEBUG_LDP_SYNC, 1); + if (IS_DEBUG_LFA) + print_debug(vty, DEBUG_LFA, 1); + return CMD_SUCCESS; } -- 2.39.5