From 985326f33aa64053fc9a21bb181b18d8712ec832 Mon Sep 17 00:00:00 2001 From: David Rose Date: Tue, 5 Jan 2010 02:11:30 +0000 Subject: [PATCH] revert accidental commit --- direct/src/plugin/load_plugin.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/plugin/load_plugin.cxx b/direct/src/plugin/load_plugin.cxx index c80d3f8471..7bec939e26 100755 --- a/direct/src/plugin/load_plugin.cxx +++ b/direct/src/plugin/load_plugin.cxx @@ -185,7 +185,7 @@ load_plugin(const string &p3d_plugin_filename, // Posix case. assert(module == NULL); if (filename.empty()) { - module = dlopen(NULL, RTLD_NOW | RTLD_GLOBAL | RTLD_DEEPBIND); + module = dlopen(NULL, RTLD_LAZY | RTLD_LOCAL); } else { module = dlopen(filename.c_str(), RTLD_LAZY | RTLD_LOCAL); }