summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2016-02-05 15:57:42 +0100
committerantirez <antirez@gmail.com>2016-02-05 15:57:42 +0100
commitd695f3e8994e37a6c96362daa29d839b72c96bf0 (patch)
treedaf74c1474d567e00e1493bea026a405d7a71ff3
parent593cf5989e41da6957219ba714003c3374c0e89f (diff)
downloadredis-d695f3e8994e37a6c96362daa29d839b72c96bf0.tar.gz
Fix NOTIFY macro names after cherry pick of fix.
-rw-r--r--src/t_list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/t_list.c b/src/t_list.c
index ebe666ddc..df8fe85a3 100644
--- a/src/t_list.c
+++ b/src/t_list.c
@@ -680,12 +680,12 @@ void lremCommand(redisClient *c) {
if (removed) {
signalModifiedKey(c->db,c->argv[1]);
- notifyKeyspaceEvent(NOTIFY_GENERIC,"lrem",c->argv[1],c->db->id);
+ notifyKeyspaceEvent(REDIS_NOTIFY_GENERIC,"lrem",c->argv[1],c->db->id);
}
if (listTypeLength(subject) == 0) {
dbDelete(c->db,c->argv[1]);
- notifyKeyspaceEvent(NOTIFY_GENERIC,"del",c->argv[1],c->db->id);
+ notifyKeyspaceEvent(REDIS_NOTIFY_GENERIC,"del",c->argv[1],c->db->id);
}
addReplyLongLong(c,removed);