From: antirez Date: Mon, 30 Nov 2009 18:26:52 +0000 (+0100) Subject: fixed a subtle bug in redis-cli not having visible effects X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/e17e0b0529eda98156f988c907789f08299c2f7e?ds=inline fixed a subtle bug in redis-cli not having visible effects --- diff --git a/redis-cli.c b/redis-cli.c index ea3cf9d5..eef85f24 100644 --- a/redis-cli.c +++ b/redis-cli.c @@ -42,7 +42,7 @@ #define REDIS_CMD_INLINE 1 #define REDIS_CMD_BULK 2 -#define REDIS_CMD_MULTIBULK 3 +#define REDIS_CMD_MULTIBULK 4 #define REDIS_NOTUSED(V) ((void) V)