diff options
| author | Lou Berger <lberger@labn.net> | 2017-10-24 11:13:12 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-24 11:13:12 -0400 |
| commit | 0f1fe4ff22b2daffe0f9d1e41b1e46e033ff9011 (patch) | |
| tree | d398d3a53ae2ae8d55b553ce66ce4c1c2f74719c | |
| parent | a2e087beccc1bafef3d8c8210dbffe8587c498b5 (diff) | |
| parent | c33b83b3599c7b5c55ade902369e4d44b815d81f (diff) | |
Merge pull request #1337 from donaldsharp/debug_nht_bgp
bgpd: Allow turn off of 'debug bgp nht' from 'no debug bgp'
| -rw-r--r-- | bgpd/bgp_debug.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bgpd/bgp_debug.c b/bgpd/bgp_debug.c index 6de9ba3cc6..1fb930fdef 100644 --- a/bgpd/bgp_debug.c +++ b/bgpd/bgp_debug.c @@ -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; |
