From d695f3e8994e37a6c96362daa29d839b72c96bf0 Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 5 Feb 2016 15:57:42 +0100 Subject: [PATCH] Fix NOTIFY macro names after cherry pick of fix. --- src/t_list.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/t_list.c b/src/t_list.c index ebe666dd..df8fe85a 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);