summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2019-01-18 11:30:40 +0100
committerantirez <antirez@gmail.com>2019-01-18 11:30:40 +0100
commit7de6e30241127b60d4bf716a3399473320afe571 (patch)
tree8c993ce7b506582631b85b215acef552baa1f3d0
parentac6e49de4884eb1c2508179b903b0dfadde0f0b9 (diff)
downloadredis-7de6e30241127b60d4bf716a3399473320afe571.tar.gz
ACL: fix config get requirepass.
-rw-r--r--src/config.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c
index 7354a4f0c..de3cd012e 100644
--- a/src/config.c
+++ b/src/config.c
@@ -1588,6 +1588,7 @@ void configGetCommand(client *c) {
} else {
addReplyBulkCString(c,"");
}
+ matches++;
}
setDeferredMapLen(c,replylen,matches);
}