Fix case in RPOPLPUSH.

This commit is contained in:
Damian Janowski & Michel Martens
2010-11-08 10:43:21 -03:00
committed by Michel Martens
parent d8d528e992
commit 8a979f0390
3 changed files with 3 additions and 3 deletions

View File

@ -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;