From b7c8ddf1a045e0c2492675296855c023de1ab68b Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Wed, 25 Jul 2012 02:21:56 +0000 Subject: [PATCH] update .so name to match .deb --- daemon/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/main.c b/daemon/main.c index e29307649..e21ff4d79 100644 --- a/daemon/main.c +++ b/daemon/main.c @@ -331,7 +331,7 @@ int main(int argc, char **argv) { } if (redis_ip) { - dlh = dlopen(MP_PLUGIN_DIR "/redis.so", RTLD_NOW | RTLD_GLOBAL); + dlh = dlopen(MP_PLUGIN_DIR "/mediaproxy-redis.so", RTLD_NOW | RTLD_GLOBAL); if (!dlh) die("Failed to open redis plugin, aborting (%s)\n", dlerror()); strp = dlsym(dlh, "__module_version");