]> git.puffer.fish Git - mirror/frr.git/commitdiff
ripd: Fix debug config failures 847/head
authorDonald Sharp <sharpd@cumulusnetworks.com>
Mon, 24 Jul 2017 20:00:20 +0000 (16:00 -0400)
committerDonald Sharp <sharpd@cumulusnetworks.com>
Mon, 24 Jul 2017 20:00:20 +0000 (16:00 -0400)
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
ripd/rip_debug.c

index b2c80817dda77c2804f8328820a3bdd0f5413fd1..492d036991b9ece51d21a6cda35b7d34b9e0d39f 100644 (file)
@@ -66,7 +66,7 @@ DEFUN (debug_rip_events,
        "RIP events\n")
 {
        rip_debug_event = RIP_DEBUG_EVENT;
-       return CMD_WARNING_CONFIG_FAILED;
+       return CMD_SUCCESS;
 }
 
 DEFUN (debug_rip_packet,
@@ -112,7 +112,7 @@ DEFUN (debug_rip_zebra,
        "RIP and ZEBRA communication\n")
 {
        rip_debug_zebra = RIP_DEBUG_ZEBRA;
-       return CMD_WARNING_CONFIG_FAILED;
+       return CMD_SUCCESS;
 }
 
 DEFUN (no_debug_rip_events,
@@ -177,7 +177,7 @@ DEFUN (no_debug_rip_zebra,
        "RIP and ZEBRA communication\n")
 {
        rip_debug_zebra = 0;
-       return CMD_WARNING_CONFIG_FAILED;
+       return CMD_SUCCESS;
 }
 
 /* Debug node. */