summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSalvatore Sanfilippo <antirez@gmail.com>2015-07-17 10:55:58 +0200
committerSalvatore Sanfilippo <antirez@gmail.com>2015-07-17 10:55:58 +0200
commit29391002f6825d972718225354b24059a11531cd (patch)
tree6dd93642ea6579f5977b638b0f45928607a5d6df
parent427794d845534ea0e84e0ef9582f9ae5800c96cf (diff)
parentc2322357343756b56adefd8f2f70dc09f43b1bb8 (diff)
downloadredis-29391002f6825d972718225354b24059a11531cd.tar.gz
Merge pull request #2644 from MOON-CLJ/command_info_fix
pfcount support multi keys
-rw-r--r--src/redis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/redis.c b/src/redis.c
index 38402de4c..2a6bb47bb 100644
--- a/src/redis.c
+++ b/src/redis.c
@@ -290,7 +290,7 @@ struct redisCommand redisCommandTable[] = {
{"geodist",geodistCommand,-4,"r",0,NULL,1,1,1,0,0},
{"pfselftest",pfselftestCommand,1,"r",0,NULL,0,0,0,0,0},
{"pfadd",pfaddCommand,-2,"wmF",0,NULL,1,1,1,0,0},
- {"pfcount",pfcountCommand,-2,"r",0,NULL,1,1,1,0,0},
+ {"pfcount",pfcountCommand,-2,"r",0,NULL,1,-1,1,0,0},
{"pfmerge",pfmergeCommand,-2,"wm",0,NULL,1,-1,1,0,0},
{"pfdebug",pfdebugCommand,-3,"w",0,NULL,0,0,0,0,0},
{"latency",latencyCommand,-2,"arslt",0,NULL,0,0,0,0,0}