Merge pull request #1337 from donaldsharp/debug_nht_bgp

bgpd: Allow turn off of 'debug bgp nht' from 'no debug bgp'
This commit is contained in:
Lou Berger 2017-10-24 11:13:12 -04:00 committed by GitHub
commit 0f1fe4ff22

View File

@ -1587,6 +1587,7 @@ DEFUN (no_debug_bgp,
TERM_DEBUG_OFF(neighbor_events, NEIGHBOR_EVENTS);
TERM_DEBUG_OFF(zebra, ZEBRA);
TERM_DEBUG_OFF(allow_martians, ALLOW_MARTIANS);
TERM_DEBUG_OFF(nht, NHT);
vty_out(vty, "All possible debugging has been turned off\n");
return CMD_SUCCESS;