From b33f932c5670749bea67933c10578336c67f16e6 Mon Sep 17 00:00:00 2001 From: Madelyn Olson Date: Mon, 17 Jun 2024 21:08:08 -0700 Subject: [PATCH] Add missing commas from debug command (#662) The missing commas caused the `DEBUG HELP` to be compressed onto a single line. Signed-off-by: Madelyn Olson --- src/debug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debug.c b/src/debug.c index d9fe93c7d4..c625ab5150 100644 --- a/src/debug.c +++ b/src/debug.c @@ -430,8 +430,8 @@ void debugCommand(client *c) { "DROP-CLUSTER-PACKET-FILTER ", " Drop all packets that match the filtered type. Set to -1 allow all packets.", "CLOSE-CLUSTER-LINK-ON-PACKET-DROP <0|1>", - " This is valid only when DROP-CLUSTER-PACKET-FILTER is set to a valid packet type." - " When set to 1, the cluster link is closed after dropping a packet based on the filter." + " This is valid only when DROP-CLUSTER-PACKET-FILTER is set to a valid packet type.", + " When set to 1, the cluster link is closed after dropping a packet based on the filter.", "OOM", " Crash the server simulating an out-of-memory error.", "PANIC",