From: Pieter Noordhuis Date: Mon, 31 Jan 2011 15:50:17 +0000 (+0100) Subject: Clarify comment X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/554a5dd2fc708d0985fecf69b87e167707691c32?ds=sidebyside Clarify comment --- diff --git a/src/t_list.c b/src/t_list.c index c9ec2e67..9e659092 100644 --- a/src/t_list.c +++ b/src/t_list.c @@ -826,7 +826,7 @@ int handleClientsWaitingListPush(redisClient *c, robj *key, robj *ele) { addReplyBulk(receiver,ele); return 1; } else { - /* BRPOPLPUSH */ + /* BRPOPLPUSH, note that receiver->db is always equal to c->db. */ dstobj = lookupKeyWrite(receiver->db,dstkey); if (dstobj && checkType(receiver,dstobj,REDIS_LIST)) { decrRefCount(dstkey);