diff options
| author | David Lamparter <equinox@diac24.net> | 2017-04-04 21:44:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-04 21:44:28 +0200 |
| commit | cbd2fb53b02ba85aabb837aa5e182a32279e17c0 (patch) | |
| tree | 0b2c11e4162ece590c2f1d2ceddfc13f6141d22a | |
| parent | 422f8d0ca9745a16b1f46710c621fc9f98200bcf (diff) | |
| parent | ee4330959627607144c4d01b32aedb49600e366a (diff) | |
Merge pull request #329 from dwalton76/debug-zebra-nht
zebra: "debug zebra nht" is not in the config
| -rw-r--r-- | zebra/debug.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/zebra/debug.c b/zebra/debug.c index 2e9fef292b..f21778276e 100644 --- a/zebra/debug.c +++ b/zebra/debug.c @@ -399,6 +399,11 @@ config_write_debug (struct vty *vty) vty_out (vty, "debug zebra fpm%s", VTY_NEWLINE); write++; } + if (IS_ZEBRA_DEBUG_NHT) + { + vty_out (vty, "debug zebra nht%s", VTY_NEWLINE); + write++; + } if (IS_ZEBRA_DEBUG_MPLS) { vty_out (vty, "debug zebra mpls%s", VTY_NEWLINE); |
