Module: sems Branch: 1.5 Commit: 3039ddc1b3004f40efbb80acc855666eaa84ba9d URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=3039ddc1b3004f40efbb80acc855666eaa84ba9d
Author: Stefan Sayer <[email protected]> Committer: Stefan Sayer <[email protected]> Date: Tue Aug 7 16:07:14 2012 +0200 b/f: load msg_storage with RTLD_GLOBAL closes bug #0000082 in the meantime, also load_plugins_rtld_global=msg_storage helps --- core/AmPlugIn.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/core/AmPlugIn.cpp b/core/AmPlugIn.cpp index 7ef4bb8..98557fc 100644 --- a/core/AmPlugIn.cpp +++ b/core/AmPlugIn.cpp @@ -288,7 +288,7 @@ int AmPlugIn::loadPlugIn(const string& file, const string& plugin_name, if (!strcmp(bname, "dsm.so") || !strcmp(bname, "ivr.so") || !strcmp(bname, "py_sems.so") || !strcmp(bname, "sbc.so") || !strcmp(bname, "diameter_client.so") || !strcmp(bname, "registrar_client.so") || - !strcmp(bname, "uac_auth.so") + !strcmp(bname, "uac_auth.so") || !strcmp(bname, "msg_storage.so") ) { dlopen_flags = RTLD_NOW | RTLD_GLOBAL; DBG("using RTLD_NOW | RTLD_GLOBAL to dlopen '%s'\n", file.c_str()); _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
