summaryrefslogtreecommitdiff
path: root/src/multi.c
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2018-11-30 09:41:54 +0100
committerantirez <antirez@gmail.com>2019-01-09 17:00:29 +0100
commit317f8b9d383f1b7f171aef7ea29f9e05abf0ba83 (patch)
tree28f4ca9efb35812f013ac459b18cc5e861591032 /src/multi.c
parent1b7298e66ae002b9011c22d8270436506a9dc9b1 (diff)
downloadredis-317f8b9d383f1b7f171aef7ea29f9e05abf0ba83.tar.gz
RESP3: most null replies converted.
Diffstat (limited to 'src/multi.c')
-rw-r--r--src/multi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/multi.c b/src/multi.c
index 84a7bb86a..b84b75f74 100644
--- a/src/multi.c
+++ b/src/multi.c
@@ -134,7 +134,7 @@ void execCommand(client *c) {
* in the second an EXECABORT error is returned. */
if (c->flags & (CLIENT_DIRTY_CAS|CLIENT_DIRTY_EXEC)) {
addReply(c, c->flags & CLIENT_DIRTY_EXEC ? shared.execaborterr :
- shared.nullmultibulk);
+ shared.null[c->resp]);
discardTransaction(c);
goto handle_monitor;
}