From 45c38179d1c4de94fb94856a03ebc211bf33a049 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Thu, 24 Jan 2013 12:55:16 -0500 Subject: [PATCH] those updates break the redis module --- daemon/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/main.c b/daemon/main.c index 17bcbf114..d36434ce2 100644 --- a/daemon/main.c +++ b/daemon/main.c @@ -446,7 +446,7 @@ void create_everything(struct main_context *ctx) { if (!dlh) die("Failed to open redis plugin, aborting (%s)\n", dlerror()); strp = dlsym(dlh, "__module_version"); - if (!strp || !*strp || strcmp(*strp, "redis/1.0.1")) + if (!strp || !*strp || strcmp(*strp, "redis/1.0.2")) die("Incorrect redis module version: %s\n", *strp); redis_mod_verify(dlh); mc.redis = redis_new(redis_ip, redis_port, redis_db);