From cb384127d1ba8e85ccd507599df46541f1349b4c Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 18 Sep 2019 18:52:13 +0200 Subject: [PATCH] RESP3: Use verbatim in CLIENT LIST. --- src/networking.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/networking.c b/src/networking.c index 7555ca77d..a959d557a 100644 --- a/src/networking.c +++ b/src/networking.c @@ -1990,7 +1990,7 @@ NULL return; } sds o = getAllClientsInfoString(type); - addReplyBulkCBuffer(c,o,sdslen(o)); + addReplyVerbatim(c,o,sdslen(o),"txt"); sdsfree(o); } else if (!strcasecmp(c->argv[1]->ptr,"reply") && c->argc == 3) { /* CLIENT REPLY ON|OFF|SKIP */