summaryrefslogtreecommitdiff
path: root/lib/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/debug.c')
-rw-r--r--lib/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debug.c b/lib/debug.c
index 0bacf9789c..72fd4648ee 100644
--- a/lib/debug.c
+++ b/lib/debug.c
@@ -28,7 +28,7 @@ static const struct debug_callbacks *callbacks;
DEFUN_NOSH(debug_all, debug_all_cmd, "[no] debug all",
NO_STR DEBUG_STR "Toggle all debugging output\n")
{
- bool set = strmatch(argv[0]->text, "no");
+ bool set = !strmatch(argv[0]->text, "no");
uint32_t mode = DEBUG_NODE2MODE(vty->node);
if (callbacks->debug_set_all)