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 <fredi@voltanet.io>
This commit is contained in:
Fredi Raspall 2021-04-28 11:16:51 +02:00
parent 1af1ce4ebc
commit 098fc8a9cd

View File

@ -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;
}