diff options
| author | Russ White <russ@riw.us> | 2017-07-14 06:24:01 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-14 06:24:01 -0400 |
| commit | 905c15079393987f8cfdd55c30e7e1a3248c8c48 (patch) | |
| tree | 0a210b213a525f2880cd694b2e45833e8430d282 /zebra/debug.c | |
| parent | 2ddcf30b2a523ca760b32b1a72fd2f16a6c5dc89 (diff) | |
| parent | f1a05de982b2466907838a7e74d7d15ad4060db2 (diff) | |
Merge pull request #815 from dwalton76/CMD_WARNING_take2
vtysh: return non-zero for configuration failures
Diffstat (limited to 'zebra/debug.c')
| -rw-r--r-- | zebra/debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/zebra/debug.c b/zebra/debug.c index ba2a9ad2a3..b570854641 100644 --- a/zebra/debug.c +++ b/zebra/debug.c @@ -96,7 +96,7 @@ DEFUN (debug_zebra_events, "Debug option set for zebra events\n") { zebra_debug_event = ZEBRA_DEBUG_EVENT; - return CMD_WARNING; + return CMD_WARNING_CONFIG_FAILED; } DEFUN (debug_zebra_nht, @@ -107,7 +107,7 @@ DEFUN (debug_zebra_nht, "Debug option set for zebra next hop tracking\n") { zebra_debug_nht = ZEBRA_DEBUG_NHT; - return CMD_WARNING; + return CMD_WARNING_CONFIG_FAILED; } DEFUN (debug_zebra_mpls, @@ -118,7 +118,7 @@ DEFUN (debug_zebra_mpls, "Debug option set for zebra MPLS LSPs\n") { zebra_debug_mpls = ZEBRA_DEBUG_MPLS; - return CMD_WARNING; + return CMD_WARNING_CONFIG_FAILED; } DEFUN (debug_zebra_packet, |
