From db6cd21cd37e1a0f6e706d7c91adf3af6eee285d Mon Sep 17 00:00:00 2001 From: srn Date: Thu, 2 Mar 2006 11:06:28 +0000 Subject: [PATCH] Removed unnecessary dlopen flag --- src/Container/Container_i.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Container/Container_i.cxx b/src/Container/Container_i.cxx index 0ad0d70ad..48b3ac787 100644 --- a/src/Container/Container_i.cxx +++ b/src/Container/Container_i.cxx @@ -308,7 +308,7 @@ Engines_Container_i::load_component_Library(const char* componentName) void* handle; #ifndef WNT - handle = dlopen( impl_name.c_str() , RTLD_LAZY | RTLD_GLOBAL) ; + handle = dlopen( impl_name.c_str() , RTLD_LAZY ) ; #else handle = dlopen( impl_name.c_str() , 0 ) ; #endif -- 2.39.2