Browse Source

revert accidental commit

David Rose 16 years ago
parent
commit
985326f33a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/plugin/load_plugin.cxx

+ 1 - 1
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);
   }