diff options
| author | Renato Westphal <renato@openbsd.org> | 2017-09-27 12:02:54 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-27 12:02:54 -0300 |
| commit | e74339e2359b846b61544f7d839d15d9d2aab660 (patch) | |
| tree | 5d19d58ce5099e7e72bca7334c18244294d23074 /zebra/debug.c | |
| parent | 40acdd93b22f062edffd48a6c4101dd940959b7c (diff) | |
| parent | b8d6c2c11e9800970b187fd1be4b940981386534 (diff) | |
Merge pull request #1201 from dwalton76/bgpd-debug-updates-prefix
Bgpd debug updates prefix
Diffstat (limited to 'zebra/debug.c')
| -rw-r--r-- | zebra/debug.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/zebra/debug.c b/zebra/debug.c index 4ba8585f3e..ac96051abd 100644 --- a/zebra/debug.c +++ b/zebra/debug.c @@ -99,7 +99,7 @@ DEFUN (debug_zebra_events, "Debug option set for zebra events\n") { zebra_debug_event = ZEBRA_DEBUG_EVENT; - return CMD_WARNING_CONFIG_FAILED; + return CMD_SUCCESS; } DEFUN (debug_zebra_nht, @@ -110,7 +110,7 @@ DEFUN (debug_zebra_nht, "Debug option set for zebra next hop tracking\n") { zebra_debug_nht = ZEBRA_DEBUG_NHT; - return CMD_WARNING_CONFIG_FAILED; + return CMD_SUCCESS; } DEFUN (debug_zebra_mpls, @@ -121,7 +121,7 @@ DEFUN (debug_zebra_mpls, "Debug option set for zebra MPLS LSPs\n") { zebra_debug_mpls = ZEBRA_DEBUG_MPLS; - return CMD_WARNING_CONFIG_FAILED; + return CMD_SUCCESS; } DEFUN (debug_zebra_vxlan, @@ -132,7 +132,7 @@ DEFUN (debug_zebra_vxlan, "Debug option set for zebra VxLAN (EVPN)\n") { zebra_debug_vxlan = ZEBRA_DEBUG_VXLAN; - return CMD_WARNING; + return CMD_SUCCESS; } DEFUN (debug_zebra_pw, @@ -147,7 +147,7 @@ DEFUN (debug_zebra_pw, UNSET_FLAG(zebra_debug_pw, ZEBRA_DEBUG_PW); else SET_FLAG(zebra_debug_pw, ZEBRA_DEBUG_PW); - return CMD_WARNING; + return CMD_SUCCESS; } DEFUN (debug_zebra_packet, |
