diff options
author | Damian Janowski & Michel Martens <damian.janowski+soveran@gmail.com> | 2010-11-08 10:43:21 -0300 |
---|---|---|
committer | Michel Martens <michel@soveran.com> | 2010-11-29 23:52:07 -0300 |
commit | 8a979f039011a4672b1052ee84ca56f214e6a681 (patch) | |
tree | 97811f4cd680d0c7e05571afe7b3e489feeac043 /src/t_list.c | |
parent | d8d528e9926d712cf02617dcdb6e9bde90e4e49c (diff) | |
download | redis-8a979f039011a4672b1052ee84ca56f214e6a681.tar.gz |
Fix case in RPOPLPUSH.
Diffstat (limited to 'src/t_list.c')
-rw-r--r-- | src/t_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/t_list.c b/src/t_list.c index 42e1d5873..10e7f72c7 100644 --- a/src/t_list.c +++ b/src/t_list.c @@ -618,7 +618,7 @@ void lremCommand(redisClient *c) { * since the element is not just returned but pushed against another list * as well. This command was originally proposed by Ezra Zygmuntowicz. */ -void rpoplpushcommand(redisClient *c) { +void rpoplpushCommand(redisClient *c) { robj *sobj, *value; if ((sobj = lookupKeyWriteOrReply(c,c->argv[1],shared.nullbulk)) == NULL || checkType(c,sobj,REDIS_LIST)) return; |