]> git.saurik.com Git - redis.git/blobdiff - src/redis.c
Change function name to match what it does
[redis.git] / src / redis.c
index 5b39c011f537e5e4e6845e483c3b4b90449e1bc1..6d803269ef9c307d2fcbdb4ba8776f2dd933355e 100644 (file)
@@ -78,6 +78,8 @@ struct redisCommand readonlyCommandTable[] = {
     {"strlen",strlenCommand,2,0,NULL,1,1,1},
     {"del",delCommand,-2,0,NULL,0,0,0},
     {"exists",existsCommand,2,0,NULL,1,1,1},
+    {"setbit",setbitCommand,4,REDIS_CMD_DENYOOM,NULL,1,1,1},
+    {"getbit",getbitCommand,3,0,NULL,1,1,1},
     {"incr",incrCommand,2,REDIS_CMD_DENYOOM,NULL,1,1,1},
     {"decr",decrCommand,2,REDIS_CMD_DENYOOM,NULL,1,1,1},
     {"mget",mgetCommand,-2,0,NULL,1,-1,1},