summaryrefslogtreecommitdiff
path: root/ripngd/ripng_debug.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@diac24.net>2017-07-25 16:23:48 +0200
committerGitHub <noreply@github.com>2017-07-25 16:23:48 +0200
commitd5eb795965ccb12100efdf2ec04f8f3a8904bb9f (patch)
tree7ded543cb87e57584763125c3fe196fb9165842a /ripngd/ripng_debug.c
parent4ff218ac39cd84d910ae2ced477630316d16f673 (diff)
parent9c9d843baa9b8320f22f5976b2d0b79753dd202e (diff)
Merge pull request #847 from donaldsharp/cmd_success
Cmd success
Diffstat (limited to 'ripngd/ripng_debug.c')
-rw-r--r--ripngd/ripng_debug.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ripngd/ripng_debug.c b/ripngd/ripng_debug.c
index 5d7a2cf9ff..d56161d39e 100644
--- a/ripngd/ripng_debug.c
+++ b/ripngd/ripng_debug.c
@@ -67,7 +67,7 @@ DEFUN (debug_ripng_events,
"Debug option set for ripng events\n")
{
ripng_debug_event = RIPNG_DEBUG_EVENT;
- return CMD_WARNING_CONFIG_FAILED;
+ return CMD_SUCCESS;
}
DEFUN (debug_ripng_packet,
@@ -114,7 +114,7 @@ DEFUN (debug_ripng_zebra,
"Debug option set for ripng and zebra communication\n")
{
ripng_debug_zebra = RIPNG_DEBUG_ZEBRA;
- return CMD_WARNING_CONFIG_FAILED;
+ return CMD_SUCCESS;
}
DEFUN (no_debug_ripng_events,
@@ -179,7 +179,7 @@ DEFUN (no_debug_ripng_zebra,
"Debug option set for ripng and zebra communication\n")
{
ripng_debug_zebra = 0;
- return CMD_WARNING_CONFIG_FAILED;
+ return CMD_SUCCESS;
}
/* Debug node. */